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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/indexeddb-test.js

Issue 2902673003: Added a refresh database button on the IndexedDB view. (Closed)
Patch Set: Fixing trybot failures, wrong security origin in test expected file. Created 3 years, 7 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: third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/indexeddb-test.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/indexeddb-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/indexeddb-test.js
index 9547f4a563afc5177a52f0439ac5fbf01f5491db..cf36c59a6c7d7614fa43384f4940305254a44642 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/indexeddb-test.js
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/indexeddb-test.js
@@ -23,8 +23,8 @@ InspectorTest.dumpIndexedDBTree = function()
InspectorTest.addResult(" (no indexes)");
continue;
}
- for (var j = 0; j < objectStoreTreeElement.childCount(); ++j) {
- var indexTreeElement = objectStoreTreeElement.childAt(j);
+ for (var k = 0; k < objectStoreTreeElement.childCount(); ++k) {
+ var indexTreeElement = objectStoreTreeElement.childAt(k);
InspectorTest.addResult(" Index: " + indexTreeElement.title);
}
}

Powered by Google App Engine
This is Rietveld 408576698