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

Unified Diff: LayoutTests/inspector/tracing/timeline-window-filter.html

Issue 1178563002: DevTools: Refactor network panel overview (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update test. Created 5 years, 6 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
« no previous file with comments | « no previous file | Source/devtools/devtools.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/tracing/timeline-window-filter.html
diff --git a/LayoutTests/inspector/tracing/timeline-window-filter.html b/LayoutTests/inspector/tracing/timeline-window-filter.html
index 4a916f68f6689a8d5ad0ac61850acd663649f1ab..870f97f271a2e21b651a6860f71781c8c4cd25eb 100644
--- a/LayoutTests/inspector/tracing/timeline-window-filter.html
+++ b/LayoutTests/inspector/tracing/timeline-window-filter.html
@@ -26,7 +26,7 @@ function test()
overviewPane.update();
InspectorTest.addResult("OverviewPane:");
- overviewPane._overviewCalculator._setDisplayWindow(0, 450);
+ overviewPane._overviewCalculator.setDisplayWindow(450);
dumpDividers(overviewPane._overviewCalculator);
InspectorTest.addResult("");
@@ -39,7 +39,7 @@ function test()
InspectorTest.addResult("range = " + windowLeft + " - " + windowRight);
InspectorTest.addResult("time range = " + view._windowStartTime + " - " + view._windowEndTime);
InspectorTest.addResult("records count: " + view._presentationModel.filteredRecords().length);
- view._calculator.setDisplayWindow(5, 455 + WebInspector.TimelineCalculator._minWidth);
+ view._calculator.setDisplayWindow(455 + WebInspector.TimelineCalculator._minWidth, 5);
dumpDividers(view._calculator);
InspectorTest.addResult("");
}
@@ -52,7 +52,7 @@ function test()
InspectorTest.addResult("mode = " + timeline._overviewModeSetting.get());
InspectorTest.addResult("range = " + windowLeft + " - " + windowRight);
InspectorTest.addResult("time range = " + mainView._timeWindowLeft + " - " + mainView._timeWindowRight);
- mainView._calculator.setDisplayWindow(5, 455 + WebInspector.TimelineCalculator._minWidth);
+ mainView._calculator.setDisplayWindow(455 + WebInspector.TimelineCalculator._minWidth, 5);
dumpDividers(mainView._calculator);
InspectorTest.addResult("");
}
« no previous file with comments | « no previous file | Source/devtools/devtools.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698