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

Unified Diff: third_party/WebKit/LayoutTests/inspector/editor/text-editor-line-breaks.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-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();
}

Powered by Google App Engine
This is Rietveld 408576698