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

Unified Diff: third_party/WebKit/LayoutTests/inspector/editor/text-editor-selection-to-search.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-selection-to-search.html
diff --git a/third_party/WebKit/LayoutTests/inspector/editor/text-editor-selection-to-search.html b/third_party/WebKit/LayoutTests/inspector/editor/text-editor-selection-to-search.html
index f7caa95a3d6d39347bbfbbb77deeef636f5d3e5e..da21fff0441e560c43cd56388bd48ef41d3df383 100644
--- a/third_party/WebKit/LayoutTests/inspector/editor/text-editor-selection-to-search.html
+++ b/third_party/WebKit/LayoutTests/inspector/editor/text-editor-selection-to-search.html
@@ -36,7 +36,7 @@ function test()
var column = line.indexOf(string);
if (column === -1)
continue;
- return new Common.TextRange(i, column, i, column + string.length);
+ return new TextUtils.TextRange(i, column, i, column + string.length);
}
}
}

Powered by Google App Engine
This is Rietveld 408576698