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

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: 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-objectstore-expected.txt
diff --git a/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt b/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt
index 4919f0ffb2c97b52248178bffe859d50487f986f..c1eb6dbbd45d3e5d5fd5b6155256cc3f0f75f8a5 100644
--- a/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt
+++ b/LayoutTests/storage/indexeddb/mozilla/remove-objectstore-expected.txt
@@ -112,14 +112,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