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

Unified Diff: LayoutTests/storage/indexeddb/mozilla/remove-objectstore-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-objectstore-expected.txt
diff --git a/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt b/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt
index fc47ab66992c8075db87f39948d3997a1f28b491..ef6b624d0b1528d2c6d4f55f5b01bec75cba6122 100644
--- a/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt
+++ b/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt
@@ -110,14 +110,14 @@ request = objectStore.add({foo: i});
request = objectStore.add({foo: i});
request = objectStore.add({foo: i});
PASS db.objectStoreNames.length is 1
-PASS db.objectStoreNames.item(0) is objectStoreName
+PASS db.objectStoreNames[0] is objectStoreName
db.close()
request = indexedDB.open(dbname, 2)
db.deleteObjectStore(objectStore.name);
PASS db.objectStoreNames.length is 0
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
request = objectStore.openCursor();
PASS event.target.result is null
db.deleteObjectStore(objectStore.name);

Powered by Google App Engine
This is Rietveld 408576698