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

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, 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/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 8a7a3e259ffa7418ba2a3c3dc60f7ee51d826428..d41422a78907b5d465eaff2f5de814ed24686510 100644
--- a/LayoutTests/storage/indexeddb/mozilla/global-data-expected.txt
+++ b/LayoutTests/storage/indexeddb/mozilla/global-data-expected.txt
@@ -11,9 +11,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