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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/resources-panel.html

Issue 2747123008: [DevTools] Separate old Application tab code (Closed)
Patch Set: [DevTools] Separate old Application tab code Created 3 years, 9 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/resources-panel.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/resources-panel.html b/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/resources-panel.html
index 4c28029855798f7848666b5e9723e9bda34942c3..f5dd2bdc62fb0b3bb2639072a4c17c878207bd43 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/resources-panel.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/indexeddb/resources-panel.html
@@ -70,7 +70,7 @@ function test()
UI.viewManager.showView("resources");
InspectorTest.addResult("Expanded IndexedDB tree element.");
- UI.panels.resources.indexedDBListTreeElement.expand();
+ UI.panels.resources._sidebar.indexedDBListTreeElement.expand();
InspectorTest.dumpIndexedDBTree();
InspectorTest.addResult("Created database.");
createDatabase(databaseCreated);
@@ -79,7 +79,7 @@ function test()
{
indexedDBModel = InspectorTest.indexedDBModel();
indexedDBModel.addEventListener(Resources.IndexedDBModel.Events.DatabaseLoaded, databaseLoaded);
- UI.panels.resources.indexedDBListTreeElement.refreshIndexedDB();
+ UI.panels.resources._sidebar.indexedDBListTreeElement.refreshIndexedDB();
}
function databaseLoaded()
@@ -106,14 +106,14 @@ function test()
function databaseDeleted()
{
- UI.panels.resources.indexedDBListTreeElement.refreshIndexedDB();
+ UI.panels.resources._sidebar.indexedDBListTreeElement.refreshIndexedDB();
InspectorTest.addSniffer(Resources.IndexedDBModel.prototype, "_updateOriginDatabaseNames", databaseNamesLoadedAfterDeleting, false);
}
function databaseNamesLoadedAfterDeleting()
{
InspectorTest.dumpIndexedDBTree();
- UI.panels.resources.indexedDBListTreeElement.collapse();
+ UI.panels.resources._sidebar.indexedDBListTreeElement.collapse();
InspectorTest.completeTest();
}
}

Powered by Google App Engine
This is Rietveld 408576698