Index: LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html |
diff --git a/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html b/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html |
index d8492944c796c213a8696779757f423788e6f498..7cdebda40f0bc03f352a98b7f84cdc93e72b8087 100644 |
--- a/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html |
+++ b/LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html |
@@ -94,7 +94,7 @@ function test() |
function breakpointResolved(callback, breakpointId, locations) |
{ |
var location = locations[0]; |
- script = WebInspector.debuggerModel.scriptForId(location.scriptId); |
+ script = InspectorTest.debuggerModel.scriptForId(location.scriptId); |
dumpBreakpointStorageAndLocations(); |
InspectorTest.addResult("Editing source:"); |
@@ -146,7 +146,7 @@ function test() |
function breakpointResolved(callback, breakpointId, locations) |
{ |
var location = locations[0]; |
- script = WebInspector.debuggerModel.scriptForId(location.scriptId); |
+ script = InspectorTest.debuggerModel.scriptForId(location.scriptId); |
dumpBreakpointStorageAndLocations(); |
InspectorTest.addResult("Editing source:"); |
@@ -198,7 +198,7 @@ function test() |
function breakpointResolved(callback, breakpointId, locations) |
{ |
var location = locations[0]; |
- script = WebInspector.debuggerModel.scriptForId(location.scriptId); |
+ script = InspectorTest.debuggerModel.scriptForId(location.scriptId); |
dumpBreakpointStorageAndLocations(); |
InspectorTest.addResult("Editing source:"); |
@@ -216,7 +216,7 @@ function test() |
dumpBreakpointStorageAndLocations(); |
InspectorTest.addResult("Committing edited source:"); |
- InspectorTest.addSniffer(WebInspector.debuggerModel, "_didEditScriptSource", commitFailed); |
+ InspectorTest.addSniffer(InspectorTest.debuggerModel, "_didEditScriptSource", commitFailed); |
InspectorTest.commitSource(javaScriptSourceFrame); |
} |
@@ -263,7 +263,7 @@ function test() |
function breakpointResolved(callback, breakpointId, locations) |
{ |
var location = locations[0]; |
- script = WebInspector.debuggerModel.scriptForId(location.scriptId); |
+ script = InspectorTest.debuggerModel.scriptForId(location.scriptId); |
dumpBreakpointStorageAndLocations(); |
InspectorTest.addResult("Editing source:"); |
@@ -281,7 +281,7 @@ function test() |
dumpBreakpointStorageAndLocations(); |
InspectorTest.addResult("Committing edited source:"); |
- InspectorTest.addSniffer(WebInspector.debuggerModel, "_didEditScriptSource", commitFailed); |
+ InspectorTest.addSniffer(InspectorTest.debuggerModel, "_didEditScriptSource", commitFailed); |
InspectorTest.commitSource(javaScriptSourceFrame); |
} |