summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/indexeddb/common.js
diff options
context:
space:
mode:
authorhans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-26 18:00:42 +0000
committerhans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-26 18:00:42 +0000
commit2c02ccc378b9b68c447c407e39ff7cae1efe36cb (patch)
tree6f372d0705ad81e1f1cb0dd61be7bfc010e8f1ac /chrome/test/data/indexeddb/common.js
parenta413cb0da21a6eef25070cb1c0629403446afc22 (diff)
downloadchromium_src-2c02ccc378b9b68c447c407e39ff7cae1efe36cb.zip
chromium_src-2c02ccc378b9b68c447c407e39ff7cae1efe36cb.tar.gz
chromium_src-2c02ccc378b9b68c447c407e39ff7cae1efe36cb.tar.bz2
Fix IndexedDB browser tests.
Some things were renamed. BUG=none TEST=browser_tesets Review URL: http://codereview.chromium.org/5337008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67462 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/data/indexeddb/common.js')
-rw-r--r--chrome/test/data/indexeddb/common.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/data/indexeddb/common.js b/chrome/test/data/indexeddb/common.js
index cf850e4..b69e143 100644
--- a/chrome/test/data/indexeddb/common.js
+++ b/chrome/test/data/indexeddb/common.js
@@ -50,7 +50,7 @@ function deleteAllObjectStores(db)
{
objectStores = db.objectStoreNames;
for (var i = 0; i < objectStores.length; ++i)
- db.removeObjectStore(objectStores[i]);
+ db.deleteObjectStore(objectStores[i]);
}
// The following functions are based on