diff options
Diffstat (limited to 'chrome/test/data/indexeddb/common.js')
-rw-r--r-- | chrome/test/data/indexeddb/common.js | 2 |
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]); } |