summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/indexeddb/common.js
diff options
context:
space:
mode:
authorjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-26 17:26:08 +0000
committerjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-26 17:26:08 +0000
commita413cb0da21a6eef25070cb1c0629403446afc22 (patch)
tree940e1720781f77b1a378f156c4e7355a5b7d8a62 /chrome/test/data/indexeddb/common.js
parentd07a3283c7833256daf8aa4c7a5165ccd704d63c (diff)
downloadchromium_src-a413cb0da21a6eef25070cb1c0629403446afc22.zip
chromium_src-a413cb0da21a6eef25070cb1c0629403446afc22.tar.gz
chromium_src-a413cb0da21a6eef25070cb1c0629403446afc22.tar.bz2
Re-enable the IndexedDB tests and fix the various changed API calls.
TEST=this BUG=64426 Review URL: http://codereview.chromium.org/5285004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67461 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 d2416d0..cf850e4 100644
--- a/chrome/test/data/indexeddb/common.js
+++ b/chrome/test/data/indexeddb/common.js
@@ -48,7 +48,7 @@ function unexpectedErrorCallback()
function deleteAllObjectStores(db)
{
- objectStores = db.objectStores;
+ objectStores = db.objectStoreNames;
for (var i = 0; i < objectStores.length; ++i)
db.removeObjectStore(objectStores[i]);
}