| Index: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-tabbed-editor-opens-network-uisourcecode.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-tabbed-editor-opens-network-uisourcecode.html b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-tabbed-editor-opens-network-uisourcecode.html
|
| index 3b42f2cc6a2a1bf57c62050b990ab2b3f97c8f50..7dc5a8e6bb0e64ee5f7f1612197489e049ca78b3 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-tabbed-editor-opens-network-uisourcecode.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-tabbed-editor-opens-network-uisourcecode.html
|
| @@ -21,14 +21,14 @@ function test()
|
| InspectorTest.addResult("Binding created: " + binding);
|
| dumpEditorTabs("Opened tabs before opening any UISourceCodes:");
|
| InspectorTest.addResult("request open uiSourceCode: " + binding.fileSystem.url());
|
| - WebInspector.panels.sources.showUISourceCode(binding.fileSystem, 0, 0);
|
| + UI.panels.sources.showUISourceCode(binding.fileSystem, 0, 0);
|
| dumpEditorTabs("Opened tabs after opening UISourceCode:");
|
| InspectorTest.completeTest();
|
| }
|
|
|
| function dumpEditorTabs(title)
|
| {
|
| - var editorContainer = WebInspector.panels.sources._sourcesView._editorContainer;
|
| + var editorContainer = UI.panels.sources._sourcesView._editorContainer;
|
| var openedUISourceCodes = editorContainer._tabIds.keysArray();
|
| openedUISourceCodes.sort((a, b) => a.url().compareTo(b.url()));
|
| InspectorTest.addResult(title);
|
|
|