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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-tabbed-editor-opens-network-uisourcecode.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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/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);

Powered by Google App Engine
This is Rietveld 408576698