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

Unified Diff: LayoutTests/inspector/sources/debugger/debugger-disable-add-breakpoint.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/debugger-disable-add-breakpoint.html
diff --git a/LayoutTests/inspector/sources/debugger/debugger-disable-add-breakpoint.html b/LayoutTests/inspector/sources/debugger/debugger-disable-add-breakpoint.html
index f5db9b2b378004912391ef4888c388e96f87f41e..a8790c2e3d3fac0f278cef867405bfda47e05e06 100644
--- a/LayoutTests/inspector/sources/debugger/debugger-disable-add-breakpoint.html
+++ b/LayoutTests/inspector/sources/debugger/debugger-disable-add-breakpoint.html
@@ -11,7 +11,7 @@ function testFunction()
var test = function()
{
- var testName = WebInspector.resourceTreeModel.inspectedPageURL();
+ var testName = InspectorTest.resourceTreeModel.inspectedPageURL();
testName = testName.substring(testName.lastIndexOf('/') + 1);
InspectorTest.startDebuggerTest(step1);
var testSourceFrame;
@@ -24,23 +24,23 @@ var test = function()
{
testSourceFrame = sourceFrame;
InspectorTest.addResult("Main resource was shown.");
- WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasDisabled, step3, this);
- WebInspector.debuggerModel.disableDebugger();
+ InspectorTest.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasDisabled, step3, this);
+ InspectorTest.debuggerModel.disableDebugger();
}
function step3()
{
- WebInspector.debuggerModel.removeEventListener(WebInspector.DebuggerModel.Events.DebuggerWasDisabled, step3, this);
+ InspectorTest.debuggerModel.removeEventListener(WebInspector.DebuggerModel.Events.DebuggerWasDisabled, step3, this);
InspectorTest.addResult("Debugger disabled.");
InspectorTest.setBreakpoint(testSourceFrame, 8, "", true);
InspectorTest.addResult("Breakpoint added");
- WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasEnabled, step4, this);
- WebInspector.debuggerModel.enableDebugger();
+ InspectorTest.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasEnabled, step4, this);
+ InspectorTest.debuggerModel.enableDebugger();
}
function step4()
{
- WebInspector.debuggerModel.removeEventListener(WebInspector.DebuggerModel.Events.DebuggerWasEnabled, step4, this);
+ InspectorTest.debuggerModel.removeEventListener(WebInspector.DebuggerModel.Events.DebuggerWasEnabled, step4, this);
InspectorTest.addResult("Debugger was enabled");
InspectorTest.runTestFunctionAndWaitUntilPaused(step5);
}
@@ -53,8 +53,8 @@ var test = function()
function step6()
{
InspectorTest.addResult("Disable debugger again");
- WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasDisabled, step7, this);
- WebInspector.debuggerModel.disableDebugger();
+ InspectorTest.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasDisabled, step7, this);
+ InspectorTest.debuggerModel.disableDebugger();
}
function step7()
@@ -63,8 +63,8 @@ var test = function()
var breakpoint = WebInspector.breakpointManager.findBreakpointOnLine(testSourceFrame.uiSourceCode(), 8);
breakpoint.remove();
InspectorTest.addResult("Breakpoint removed");
- WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasEnabled, step8, this);
- WebInspector.debuggerModel.enableDebugger();
+ InspectorTest.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasEnabled, step8, this);
+ InspectorTest.debuggerModel.enableDebugger();
}
function step8()

Powered by Google App Engine
This is Rietveld 408576698