| 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);
|
| }
|
| }
|
|
|