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

Unified Diff: third_party/WebKit/LayoutTests/inspector/editor/text-editor-word-jumps.html

Issue 2269183003: DevTools: Merge CodeMirrorTextEditor's copyRange into text (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 90b986e67ec07dcf7825ac613f21ce8d27446d70..dfa6e0c26af2cd863fe69f23e2fde76e4fe8f808 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
@@ -37,7 +37,7 @@ function testMyCamelMove(foo, bar)
var line = textEditor.line(selection.startLine);
InspectorTest.addResult(line.substring(0, selection.startColumn) + "|" + line.substring(selection.startColumn));
} else {
- InspectorTest.addResult(">>" + textEditor.copyRange(selection.normalize()) + "<<");
+ InspectorTest.addResult(">>" + textEditor.text(selection.normalize()) + "<<");
}
return selection;
}

Powered by Google App Engine
This is Rietveld 408576698