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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-disable-add-breakpoint.html

Issue 2832943002: DevTools: properly handle target suspension/resuming in NetworkProject (Closed)
Patch Set: address comments Created 3 years, 7 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: third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-disable-add-breakpoint.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-disable-add-breakpoint.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-disable-add-breakpoint.html
index 6843a41d1ec70efdbccce345210bf33ff8e98e82..3a2bd1dc4612890449a7f113bdc311fd155b8096 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-disable-add-breakpoint.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger-breakpoints/debugger-disable-add-breakpoint.html
@@ -25,7 +25,7 @@ var test = function()
testSourceFrame = sourceFrame;
InspectorTest.addResult("Main resource was shown.");
InspectorTest.debuggerModel.addEventListener(SDK.DebuggerModel.Events.DebuggerWasDisabled, step3, this);
- InspectorTest.debuggerModel.disableDebugger();
+ InspectorTest.debuggerModel._disableDebugger();
}
function step3()
@@ -35,7 +35,7 @@ var test = function()
InspectorTest.setBreakpoint(testSourceFrame, 8, "", true);
InspectorTest.addResult("Breakpoint added");
InspectorTest.debuggerModel.addEventListener(SDK.DebuggerModel.Events.DebuggerWasEnabled, step4, this);
- InspectorTest.debuggerModel.enableDebugger();
+ InspectorTest.debuggerModel._enableDebugger();
}
function step4()
@@ -54,7 +54,7 @@ var test = function()
{
InspectorTest.addResult("Disable debugger again");
InspectorTest.debuggerModel.addEventListener(SDK.DebuggerModel.Events.DebuggerWasDisabled, step7, this);
- InspectorTest.debuggerModel.disableDebugger();
+ InspectorTest.debuggerModel._disableDebugger();
}
function step7()
@@ -64,7 +64,7 @@ var test = function()
breakpoint.remove();
InspectorTest.addResult("Breakpoint removed");
InspectorTest.debuggerModel.addEventListener(SDK.DebuggerModel.Events.DebuggerWasEnabled, step8, this);
- InspectorTest.debuggerModel.enableDebugger();
+ InspectorTest.debuggerModel._enableDebugger();
}
function step8()

Powered by Google App Engine
This is Rietveld 408576698