Index: third_party/WebKit/LayoutTests/inspector/editor/text-editor-line-breaks.html |
diff --git a/third_party/WebKit/LayoutTests/inspector/editor/text-editor-line-breaks.html b/third_party/WebKit/LayoutTests/inspector/editor/text-editor-line-breaks.html |
index 565219503de5425ff0a8e444c9c75df758d33d02..642d5ed6d7debc294d7e8c1c4e843e62b181fef7 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/editor/text-editor-line-breaks.html |
+++ b/third_party/WebKit/LayoutTests/inspector/editor/text-editor-line-breaks.html |
@@ -27,7 +27,7 @@ function test() |
{ |
var textEditor = InspectorTest.createTestEditor(); |
textEditor.setText("1\n2\n3\n"); |
- textEditor.editRange(new Common.TextRange(1, 0, 1, 0), "foo\r\nbar"); |
+ textEditor.editRange(new TextUtils.TextRange(1, 0, 1, 0), "foo\r\nbar"); |
InspectorTest.addResult(encodeURI(textEditor.text())); |
next(); |
}, |
@@ -36,7 +36,7 @@ function test() |
{ |
var textEditor = InspectorTest.createTestEditor(); |
textEditor.setText("1\r\n2\r\n3\r\n"); |
- textEditor.editRange(new Common.TextRange(1, 0, 1, 0), "foo\r\nbar"); |
+ textEditor.editRange(new TextUtils.TextRange(1, 0, 1, 0), "foo\r\nbar"); |
InspectorTest.addResult(encodeURI(textEditor.text())); |
next(); |
} |