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

Unified Diff: LayoutTests/storage/indexeddb/mozilla/resources/objectstorenames.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/objectstorenames.js
diff --git a/LayoutTests/storage/indexeddb/mozilla/resources/objectstorenames.js b/LayoutTests/storage/indexeddb/mozilla/resources/objectstorenames.js
index 388399ec1504bb1339bee0290a45032a8c8740e5..294900cb08839a3be13af5883bb50120eaedcf0b 100644
--- a/LayoutTests/storage/indexeddb/mozilla/resources/objectstorenames.js
+++ b/LayoutTests/storage/indexeddb/mozilla/resources/objectstorenames.js
@@ -22,6 +22,6 @@ function prepareDatabase()
shouldBeTrue("'objectStoreNames' in db");
shouldBe("db.objectStoreNames.length", "1");
- shouldBe("db.objectStoreNames.item(0)", "objectStoreName");
+ shouldBe("db.objectStoreNames[0]", "objectStoreName");
finishJSTest();
}

Powered by Google App Engine
This is Rietveld 408576698