| Index: LayoutTests/http/tests/inspector/indexeddb/resources-panel.html
|
| diff --git a/LayoutTests/http/tests/inspector/indexeddb/resources-panel.html b/LayoutTests/http/tests/inspector/indexeddb/resources-panel.html
|
| index 7df00305c88248e0345371cd059fd82c7f31b2a4..71330021ecf8f6c9b84f4116fe9576ea04e4ad76 100644
|
| --- a/LayoutTests/http/tests/inspector/indexeddb/resources-panel.html
|
| +++ b/LayoutTests/http/tests/inspector/indexeddb/resources-panel.html
|
| @@ -67,7 +67,7 @@ function test()
|
| WebInspector.inspectorView.showPanel("resources");
|
|
|
| InspectorTest.addResult("Expanded IndexedDB tree element.");
|
| - WebInspector.panels.resources.indexedDBListTreeElement.expand();
|
| + WebInspector.inspectorView.panel("resources").indexedDBListTreeElement.expand();
|
|
|
| InspectorTest.addSniffer(WebInspector.IndexedDBModel.prototype, "_updateOriginDatabaseNames", indexedDBTreeElementExpanded, false);
|
| function indexedDBTreeElementExpanded()
|
| @@ -79,9 +79,9 @@ function test()
|
|
|
| function databaseCreated()
|
| {
|
| - indexedDBModel = WebInspector.panels.resources.indexedDBListTreeElement._indexedDBModel;
|
| + indexedDBModel = WebInspector.inspectorView.panel("resources").indexedDBListTreeElement._indexedDBModel;
|
| indexedDBModel.addEventListener(WebInspector.IndexedDBModel.EventTypes.DatabaseLoaded, databaseLoaded);
|
| - WebInspector.panels.resources.indexedDBListTreeElement.refreshIndexedDB();
|
| + WebInspector.inspectorView.panel("resources").indexedDBListTreeElement.refreshIndexedDB();
|
| }
|
|
|
| function databaseLoaded()
|
| @@ -108,14 +108,14 @@ function test()
|
|
|
| function databaseDeleted()
|
| {
|
| - WebInspector.panels.resources.indexedDBListTreeElement.refreshIndexedDB();
|
| + WebInspector.inspectorView.panel("resources").indexedDBListTreeElement.refreshIndexedDB();
|
| InspectorTest.addSniffer(WebInspector.IndexedDBModel.prototype, "_updateOriginDatabaseNames", databaseNamesLoadedAfterDeleting, false);
|
| }
|
|
|
| function databaseNamesLoadedAfterDeleting()
|
| {
|
| InspectorTest.dumpIndexedDBTree();
|
| - WebInspector.panels.resources.indexedDBListTreeElement.collapse();
|
| + WebInspector.inspectorView.panel("resources").indexedDBListTreeElement.collapse();
|
| InspectorTest.completeTest();
|
| }
|
| }
|
|
|