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

Unified Diff: LayoutTests/storage/indexeddb/mozilla/resources/create-index-unique.js

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/resources/create-index-unique.js
diff --git a/LayoutTests/storage/indexeddb/mozilla/resources/create-index-unique.js b/LayoutTests/storage/indexeddb/mozilla/resources/create-index-unique.js
index 3a68a13a3882c86b4476013575ea86cf5264f600..f36ffa1c14c1b9ca8a6fa60d8709692aa868f118 100644
--- a/LayoutTests/storage/indexeddb/mozilla/resources/create-index-unique.js
+++ b/LayoutTests/storage/indexeddb/mozilla/resources/create-index-unique.js
@@ -28,7 +28,7 @@ function prepareDatabase()
foundNewlyCreatedIndex = false;
for (var k = 0; k < objectStore.indexNames.length; k++) {
- if (objectStore.indexNames.item(k) == indexName) {
+ if (objectStore.indexNames[k] == indexName) {
foundNewlyCreatedIndex = true;
}
}

Powered by Google App Engine
This is Rietveld 408576698