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

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

Issue 1924153002: DevTools: reorder items in the resources panel sidebar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 173fade48de2ec821e9d589e725079bc7a12bff1..828bcf4537d8dad543da5e5783d479e2d609946c 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
@@ -11,21 +11,21 @@ InspectorTest.dumpIndexedDBTree = function()
}
for (var i = 0; i < indexedDBTreeElement.childCount(); ++i) {
var databaseTreeElement = indexedDBTreeElement.childAt(i);
- InspectorTest.addResult(" database: " + databaseTreeElement.titleText);
+ InspectorTest.addResult(" database: " + databaseTreeElement.title);
if (!databaseTreeElement.childCount()) {
InspectorTest.addResult(" (no object stores)");
continue;
}
for (var j = 0; j < databaseTreeElement.childCount(); ++j) {
var objectStoreTreeElement = databaseTreeElement.childAt(j);
- InspectorTest.addResult(" Object store: " + objectStoreTreeElement.titleText);
+ InspectorTest.addResult(" Object store: " + objectStoreTreeElement.title);
if (!objectStoreTreeElement.childCount()) {
InspectorTest.addResult(" (no indexes)");
continue;
}
for (var j = 0; j < objectStoreTreeElement.childCount(); ++j) {
var indexTreeElement = objectStoreTreeElement.childAt(j);
- InspectorTest.addResult(" Index: " + indexTreeElement.titleText);
+ InspectorTest.addResult(" Index: " + indexTreeElement.title);
}
}
}

Powered by Google App Engine
This is Rietveld 408576698