Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Unified Diff: LayoutTests/storage/indexeddb/mozilla/resources/global-data.js

Issue 966843002: Mark DOMStringList.contains() as deprecated, add console warning. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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");

Powered by Google App Engine
This is Rietveld 408576698