| 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)
|
|
|