Index: LayoutTests/inspector/sources/sources-panel-extension-names.html |
diff --git a/LayoutTests/inspector/sources/sources-panel-extension-names.html b/LayoutTests/inspector/sources/sources-panel-extension-names.html |
index 1be3a4886091b26f281e57e0412b193b4afebb43..e71babe06274b049a5e319ed3ebff0656152ca7a 100644 |
--- a/LayoutTests/inspector/sources/sources-panel-extension-names.html |
+++ b/LayoutTests/inspector/sources/sources-panel-extension-names.html |
@@ -24,17 +24,17 @@ function test() |
var contentProvider = new WebInspector.StaticContentProvider(WebInspector.resourceTypes.Script, ""); |
WebInspector.networkProject.addFileForURL(mockContentScriptURL, contentProvider, true); |
InspectorTest.dumpNavigatorView(contentScriptsNavigatorView, "contentScripts", " "); |
- WebInspector.runtimeModel._executionContextCreated(mockExecutionContext); |
+ InspectorTest.runtimeModel._executionContextCreated(mockExecutionContext); |
InspectorTest.dumpNavigatorView(contentScriptsNavigatorView, "contentScripts", " "); |
// cleanup after test |
WebInspector.networkProject.reset(); |
- WebInspector.runtimeModel._executionContextsCleared(); |
+ InspectorTest.runtimeModel._executionContextsCleared(); |
next(); |
}, |
function testAddExecutionContextBeforeFile(next) |
{ |
- WebInspector.runtimeModel._executionContextCreated(mockExecutionContext); |
+ InspectorTest.runtimeModel._executionContextCreated(mockExecutionContext); |
var contentProvider = new WebInspector.StaticContentProvider(WebInspector.resourceTypes.Script, ""); |
WebInspector.networkProject.addFileForURL(mockContentScriptURL, contentProvider, true); |
InspectorTest.dumpNavigatorView(contentScriptsNavigatorView, "contentScripts", " "); |