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

Unified Diff: third_party/WebKit/LayoutTests/inspector/initial-modules-load.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/inspector/initial-modules-load.html
diff --git a/third_party/WebKit/LayoutTests/inspector/initial-modules-load.html b/third_party/WebKit/LayoutTests/inspector/initial-modules-load.html
index d34a9831b44b593db405305987d5db3d34214c21..e173a8b124572cd796419011108b2fbcbdbc79ed 100644
--- a/third_party/WebKit/LayoutTests/inspector/initial-modules-load.html
+++ b/third_party/WebKit/LayoutTests/inspector/initial-modules-load.html
@@ -13,17 +13,17 @@ function test()
function testCreateElementsPanel(next)
{
- WebInspector.inspectorView.panel("elements").then(InspectorTest.dumpLoadedModules.bind(InspectorTest, self.runtime.loadModulePromise("animation").then(next)));
+ UI.inspectorView.panel("elements").then(InspectorTest.dumpLoadedModules.bind(InspectorTest, self.runtime.loadModulePromise("animation").then(next)));
},
function testCreateNetworkPanel(next)
{
- WebInspector.inspectorView.panel("network").then(InspectorTest.dumpLoadedModules.bind(InspectorTest, next));
+ UI.inspectorView.panel("network").then(InspectorTest.dumpLoadedModules.bind(InspectorTest, next));
},
function testShowSourcesPanel(next)
{
- WebInspector.inspectorView.panel("sources").then(InspectorTest.dumpLoadedModules.bind(InspectorTest, next));
+ UI.inspectorView.panel("sources").then(InspectorTest.dumpLoadedModules.bind(InspectorTest, next));
},
function testOpenUISourceCode(next)
@@ -35,8 +35,8 @@ function test()
return true;
}
});
- var uiLocation = WebInspector.workspace.uiSourceCodeForURL(resource.url).uiLocation(2, 1);
- WebInspector.Revealer.reveal(uiLocation);
+ var uiLocation = Workspace.workspace.uiSourceCodeForURL(resource.url).uiLocation(2, 1);
+ Common.Revealer.reveal(uiLocation);
InspectorTest.dumpLoadedModules(next);
}
]);

Powered by Google App Engine
This is Rietveld 408576698