Index: LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt |
diff --git a/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt b/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt |
index 4919f0ffb2c97b52248178bffe859d50487f986f..c1eb6dbbd45d3e5d5fd5b6155256cc3f0f75f8a5 100644 |
--- a/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt |
+++ b/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt |
@@ -112,14 +112,14 @@ request = objectStore.add({foo: i}); |
request = objectStore.add({foo: i}); |
request = objectStore.add({foo: i}); |
PASS db.objectStoreNames.length is 1 |
-PASS db.objectStoreNames.item(0) is objectStoreName |
+PASS db.objectStoreNames[0] is objectStoreName |
db.close() |
request = indexedDB.open(dbname, 2) |
db.deleteObjectStore(objectStore.name); |
PASS db.objectStoreNames.length is 0 |
objectStore = db.createObjectStore(objectStoreName, { keyPath: 'foo' }); |
PASS db.objectStoreNames.length is 1 |
-PASS db.objectStoreNames.item(0) is objectStoreName |
+PASS db.objectStoreNames[0] is objectStoreName |
request = objectStore.openCursor(); |
PASS event.target.result is null |
db.deleteObjectStore(objectStore.name); |