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

Unified Diff: LayoutTests/storage/indexeddb/mozilla/global-data-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, 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/global-data-expected.txt
diff --git a/LayoutTests/storage/indexeddb/mozilla/global-data-expected.txt b/LayoutTests/storage/indexeddb/mozilla/global-data-expected.txt
index 499fbf71932e820648cde6c539363b1ae1c1c904..9bd6ae670e2356502b07e48ed45271277e8e67cc 100644
--- a/LayoutTests/storage/indexeddb/mozilla/global-data-expected.txt
+++ b/LayoutTests/storage/indexeddb/mozilla/global-data-expected.txt
@@ -13,9 +13,9 @@ indexedDB.open(dbname);
db2 = event.target.result
PASS db1 !== db2 is true
PASS db1.objectStoreNames.length is 1
-PASS db1.objectStoreNames.item(0) is objectStoreName
+PASS db1.objectStoreNames[0] is objectStoreName
PASS db2.objectStoreNames.length is 1
-PASS db2.objectStoreNames.item(0) is objectStoreName
+PASS db2.objectStoreNames[0] is objectStoreName
objectStore1 = db1.transaction(objectStoreName).objectStore(objectStoreName);
PASS objectStore1.name is objectStoreName
PASS objectStore1.keyPath is objectStoreOptions.keyPath

Powered by Google App Engine
This is Rietveld 408576698