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

Unified Diff: third_party/WebKit/LayoutTests/inspector/editor/text-editor-line-breaks.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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 f271f44a8e867048ecbe2d3d094adeba74040db5..565219503de5425ff0a8e444c9c75df758d33d02 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 WebInspector.TextRange(1, 0, 1, 0), "foo\r\nbar");
+ textEditor.editRange(new Common.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 WebInspector.TextRange(1, 0, 1, 0), "foo\r\nbar");
+ textEditor.editRange(new Common.TextRange(1, 0, 1, 0), "foo\r\nbar");
InspectorTest.addResult(encodeURI(textEditor.text()));
next();
}

Powered by Google App Engine
This is Rietveld 408576698