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

Unified Diff: third_party/WebKit/LayoutTests/inspector/editor/text-editor-word-jumps.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/editor/text-editor-word-jumps.html
diff --git a/third_party/WebKit/LayoutTests/inspector/editor/text-editor-word-jumps.html b/third_party/WebKit/LayoutTests/inspector/editor/text-editor-word-jumps.html
index 42ae8f32cee7118d9d3cc79efd2f25fe8b16386e..9e50b5cdfa673ba712f8bcaa7eabf984f13fb18c 100644
--- a/third_party/WebKit/LayoutTests/inspector/editor/text-editor-word-jumps.html
+++ b/third_party/WebKit/LayoutTests/inspector/editor/text-editor-word-jumps.html
@@ -44,14 +44,14 @@ function testMyCamelMove(foo, bar)
function setCursorAtBeginning()
{
- textEditor.setSelection(Common.TextRange.createFromLocation(0, 0));
+ textEditor.setSelection(TextUtils.TextRange.createFromLocation(0, 0));
}
function setCursorAtEnd()
{
var lastLine = textEditor.linesCount - 1;
var lastColumn = textEditor.line(lastLine).length;
- textEditor.setSelection(Common.TextRange.createFromLocation(lastLine, lastColumn));
+ textEditor.setSelection(TextUtils.TextRange.createFromLocation(lastLine, lastColumn));
}
function fireEventWhileSelectionChanges(eventType, modifiers, callback)

Powered by Google App Engine
This is Rietveld 408576698