Index: LayoutTests/storage/indexeddb/mozilla/resources/global-data.js |
diff --git a/LayoutTests/storage/indexeddb/mozilla/resources/global-data.js b/LayoutTests/storage/indexeddb/mozilla/resources/global-data.js |
index 7c1c722a4a91c6b7c34030fc8401aac549f7d5b5..4581e9c09b15e75285dafafa4225ca783b0f24c3 100644 |
--- a/LayoutTests/storage/indexeddb/mozilla/resources/global-data.js |
+++ b/LayoutTests/storage/indexeddb/mozilla/resources/global-data.js |
@@ -31,9 +31,9 @@ function open2Success() |
shouldBeTrue("db1 !== db2"); |
shouldBe("db1.objectStoreNames.length", "1"); |
- shouldBe("db1.objectStoreNames.item(0)", "objectStoreName"); |
+ shouldBe("db1.objectStoreNames[0]", "objectStoreName"); |
shouldBe("db2.objectStoreNames.length", "1"); |
- shouldBe("db2.objectStoreNames.item(0)", "objectStoreName"); |
+ shouldBe("db2.objectStoreNames[0]", "objectStoreName"); |
objectStore1 = evalAndLog("objectStore1 = db1.transaction(objectStoreName).objectStore(objectStoreName);"); |
shouldBe("objectStore1.name", "objectStoreName"); |