| 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);
|
| }
|
| ]);
|
|
|