summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorhans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-29 17:52:45 +0000
committerhans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-29 17:52:45 +0000
commit184a55e1b1182a1d6695bf077f9854ab3313dc3e (patch)
treeb5030853a133ccc87668dae22b1e04cbb0a864f5 /tools
parentf11c99ab635fb477bc8da138913b9aca3689f849 (diff)
downloadchromium_src-184a55e1b1182a1d6695bf077f9854ab3313dc3e.zip
chromium_src-184a55e1b1182a1d6695bf077f9854ab3313dc3e.tar.gz
chromium_src-184a55e1b1182a1d6695bf077f9854ab3313dc3e.tar.bz2
IndexedDB: Fix the page cycler.
Forgot to update this in the big remove/delete rename. BUG=none TEST=page_cycler_tests Review URL: http://codereview.chromium.org/5399001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67552 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r--tools/page_cycler/indexed_db/basic_insert/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/page_cycler/indexed_db/basic_insert/index.html b/tools/page_cycler/indexed_db/basic_insert/index.html
index 8f13e58..cd8b3e1 100644
--- a/tools/page_cycler/indexed_db/basic_insert/index.html
+++ b/tools/page_cycler/indexed_db/basic_insert/index.html
@@ -38,7 +38,7 @@
transaction.oncomplete = storeCreated;
while (db.objectStoreNames.length)
- db.removeObjectStore(db.objectStoreNames[0]);
+ db.deleteObjectStore(db.objectStoreNames[0]);
db.createObjectStore('store');
}