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

Unified Diff: LayoutTests/storage/indexeddb/mozilla/remove-index-expected.txt

Issue 966843002: Mark DOMStringList.contains() as deprecated, add console warning. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add more detailed use counters Created 5 years, 6 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/remove-index-expected.txt
diff --git a/LayoutTests/storage/indexeddb/mozilla/remove-index-expected.txt b/LayoutTests/storage/indexeddb/mozilla/remove-index-expected.txt
index b7972bb61595b945bc70c94b7ce5b52e433b6c36..56d914f547c0996cbcbf9e474d4340a64d7135ae 100644
--- a/LayoutTests/storage/indexeddb/mozilla/remove-index-expected.txt
+++ b/LayoutTests/storage/indexeddb/mozilla/remove-index-expected.txt
@@ -10,11 +10,11 @@ indexedDB.deleteDatabase(dbname)
indexedDB.open(dbname)
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
PASS objectStore.indexNames.length is 0
index = objectStore.createIndex(indexName, 'foo');
PASS objectStore.indexNames.length is 1
-PASS objectStore.indexNames.item(0) is indexName
+PASS objectStore.indexNames[0] is indexName
objectStore.deleteIndex(indexName);
PASS objectStore.indexNames.length is 0
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698