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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-merge-editor-tabs.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/http/tests/inspector/persistence/persistence-merge-editor-tabs.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-merge-editor-tabs.html b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-merge-editor-tabs.html
index 52ad9a1adf211ec697a0319e330142057365ad8d..4f9084e4b72ec05c4fa03c8a388f007d6aa5c8de 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-merge-editor-tabs.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-merge-editor-tabs.html
@@ -28,7 +28,7 @@ function test()
function onNetworkTab(sourceFrame)
{
networkSourceFrame = sourceFrame;
- networkSourceFrame.setSelection(new Common.TextRange(2, 0, 2, 5));
+ networkSourceFrame.setSelection(new TextUtils.TextRange(2, 0, 2, 5));
networkSourceFrame.scrollToLine(2);
dumpSourceFrame(networkSourceFrame);
next();
@@ -44,7 +44,7 @@ function test()
function onFileSystemTab(sourceFrame)
{
fileSystemSourceFrame = sourceFrame;
- fileSystemSourceFrame.setSelection(new Common.TextRange(1, 0, 2, 5));
+ fileSystemSourceFrame.setSelection(new TextUtils.TextRange(1, 0, 2, 5));
fileSystemSourceFrame.scrollToLine(1);
dumpSourceFrame(fileSystemSourceFrame);
dumpEditorTabs();

Powered by Google App Engine
This is Rietveld 408576698