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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-no-reveal.html

Issue 2769843003: DevTools: split text_utils out of common module (Closed)
Patch Set: rebaseline Created 3 years, 9 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/live-edit-no-reveal.html
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-no-reveal.html b/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-no-reveal.html
index 6209dcf9f0e276e54162713abd0fe88cc9d072db..383b8added861afbb5641cce3e041de4dd9ec275 100644
--- a/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-no-reveal.html
+++ b/third_party/WebKit/LayoutTests/inspector/sources/debugger/live-edit-no-reveal.html
@@ -38,7 +38,7 @@ function test()
panel._updateLastModificationTimeForTest();
InspectorTest.replaceInSource(sourceFrame, oldText, newText);
InspectorTest.addResult("Moving cursor to (0, 0).");
- sourceFrame.setSelection(Common.TextRange.createFromLocation(0, 0));
+ sourceFrame.setSelection(TextUtils.TextRange.createFromLocation(0, 0));
InspectorTest.addResult("Committing live edit.");
InspectorTest.commitSource(sourceFrame);
}
@@ -77,7 +77,7 @@ function test()
panel._updateLastModificationTimeForTest();
InspectorTest.replaceInSource(sourceFrame, oldText, newText);
InspectorTest.addResult("Moving cursor to (0, 0).");
- sourceFrame.setSelection(Common.TextRange.createFromLocation(0, 0));
+ sourceFrame.setSelection(TextUtils.TextRange.createFromLocation(0, 0));
InspectorTest.addResult("Committing live edit.");
InspectorTest.commitSource(sourceFrame);
}

Powered by Google App Engine
This is Rietveld 408576698