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

Unified Diff: LayoutTests/inspector/sources/debugger/live-edit-no-reveal.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-no-reveal.html
diff --git a/LayoutTests/inspector/sources/debugger/live-edit-no-reveal.html b/LayoutTests/inspector/sources/debugger/live-edit-no-reveal.html
index f9f41b1651887dc52d81a89dd5105be24b829b8e..9f62d6d4c86862fe6a31e6b85a07c3acfca59a1c 100644
--- a/LayoutTests/inspector/sources/debugger/live-edit-no-reveal.html
+++ b/LayoutTests/inspector/sources/debugger/live-edit-no-reveal.html
@@ -17,7 +17,7 @@ function test()
InspectorTest.addResult("Did step into");
}
- InspectorTest.addSniffer(WebInspector.debuggerModel, "stepInto", didStepInto, true);
+ InspectorTest.addSniffer(InspectorTest.debuggerModel, "stepInto", didStepInto, true);
function testLiveEditWhenPausedDoesNotCauseCursorMove(oldText, newText, next)
{
@@ -34,7 +34,7 @@ function test()
{
sourceFrame = panel.visibleView;
InspectorTest.removeBreakpoint(sourceFrame, 8);
- InspectorTest.addSniffer(WebInspector.debuggerModel, "_didEditScriptSource", didEditScriptSource);
+ InspectorTest.addSniffer(InspectorTest.debuggerModel, "_didEditScriptSource", didEditScriptSource);
InspectorTest.replaceInSource(sourceFrame, oldText, newText);
InspectorTest.addResult("Moving cursor to (0, 0).");
sourceFrame.setSelection(WebInspector.TextRange.createFromLocation(0, 0));
@@ -71,7 +71,7 @@ function test()
{
sourceFrame = panel.visibleView;
InspectorTest.removeBreakpoint(sourceFrame, 8);
- InspectorTest.addSniffer(WebInspector.debuggerModel, "_didEditScriptSource", didEditScriptSource);
+ InspectorTest.addSniffer(InspectorTest.debuggerModel, "_didEditScriptSource", didEditScriptSource);
InspectorTest.replaceInSource(sourceFrame, oldText, newText);
InspectorTest.addResult("Moving cursor to (0, 0).");
sourceFrame.setSelection(WebInspector.TextRange.createFromLocation(0, 0));

Powered by Google App Engine
This is Rietveld 408576698