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

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: 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/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 9671ca1819af0a719c5b99145767e5e4d9ef2fe7..f9cb64bb0e8ff6386836727b2b33f179ac482057 100644
--- a/LayoutTests/storage/indexeddb/mozilla/remove-index-expected.txt
+++ b/LayoutTests/storage/indexeddb/mozilla/remove-index-expected.txt
@@ -8,11 +8,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