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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/persistence/persistence-merge-editor-tabs.html

Issue 2551233002: DevTools: show filesystem file by default (Closed)
Patch Set: nit Created 4 years 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 7435f62d27f5677b2bbc4bfd4d96cb647c44c50e..13860925441351a7c2b4f2f321b65635368192bc 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,6 +28,8 @@ function test()
function onNetworkTab(sourceFrame)
{
networkSourceFrame = sourceFrame;
+ networkSourceFrame.setSelection(new Common.TextRange(2, 0, 2, 5));
+ networkSourceFrame.scrollToLine(2);
dumpSourceFrame(networkSourceFrame);
next();
}
@@ -48,8 +50,6 @@ function test()
function onFileSystemTab(sourceFrame)
{
fileSystemSourceFrame = sourceFrame;
- fileSystemSourceFrame.setSelection(new Common.TextRange(2, 0, 2, 5));
- fileSystemSourceFrame.scrollToLine(2);
dumpSourceFrame(fileSystemSourceFrame);
dumpEditorTabs();
next();
@@ -64,7 +64,7 @@ function test()
function onBindingCreated()
{
dumpEditorTabs();
- dumpSourceFrame(networkSourceFrame);
+ dumpSourceFrame(fileSystemSourceFrame);
next();
}
},

Powered by Google App Engine
This is Rietveld 408576698