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

Unified Diff: LayoutTests/inspector/sources/debugger/live-edit-breakpoints.html

Issue 881263002: DevTools: use target-based model accessors only. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 months 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: 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);
}
« no previous file with comments | « LayoutTests/inspector/sources/debugger/live-edit.html ('k') | LayoutTests/inspector/sources/debugger/live-edit-no-reveal.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698