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

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

Issue 194713007: TimelinePanel: restore selectedRecord behevior by removing windowFilter. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
« no previous file with comments | « no previous file | Source/devtools/front_end/FlameChart.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/timeline/timeline-window-filter.html
diff --git a/LayoutTests/inspector/timeline/timeline-window-filter.html b/LayoutTests/inspector/timeline/timeline-window-filter.html
index 967b77749360ff7ea4f5bad74222e2feaffde998..8ba21405d1207b177c1f6dd39491a642f14a894e 100644
--- a/LayoutTests/inspector/timeline/timeline-window-filter.html
+++ b/LayoutTests/inspector/timeline/timeline-window-filter.html
@@ -31,7 +31,7 @@ function test()
view._refresh();
InspectorTest.addResult("mode = " + timeline._presentationModeSetting.get());
InspectorTest.addResult("range = " + windowLeft + " - " + windowRight);
- InspectorTest.addResult("time range = " + timeline._windowFilter._windowStartTime + " - " + timeline._windowFilter._windowEndTime);
+ InspectorTest.addResult("time range = " + view._windowStartTime + " - " + view._windowEndTime);
InspectorTest.addResult("records count: " + view._presentationModel.filteredRecords().length);
InspectorTest.addResult("");
}
@@ -55,18 +55,18 @@ function test()
InspectorTest.addResult("--------------------------------------------------------");
InspectorTest.addResult("mode = " + timeline._presentationModeSetting.get());
- InspectorTest.addResult("time range = " + timeline._windowFilter._windowStartTime + " - " + timeline._windowFilter._windowEndTime);
+ InspectorTest.addResult("time range = " + timeline._windowStartTime + " - " + timeline._windowEndTime);
timeline._selectPresentationMode(WebInspector.TimelinePanel.Mode.Events);
InspectorTest.addResult("");
InspectorTest.addResult("mode = " + timeline._presentationModeSetting.get());
- InspectorTest.addResult("time range = " + timeline._windowFilter._windowStartTime + " - " + timeline._windowFilter._windowEndTime);
+ InspectorTest.addResult("time range = " + timeline._windowStartTime + " - " + timeline._windowEndTime);
timeline._selectPresentationMode(WebInspector.TimelinePanel.Mode.Memory);
InspectorTest.addResult("");
InspectorTest.addResult("mode = " + timeline._presentationModeSetting.get());
- InspectorTest.addResult("time range = " + timeline._windowFilter._windowStartTime + " - " + timeline._windowFilter._windowEndTime);
+ InspectorTest.addResult("time range = " + timeline._windowStartTime + " - " + timeline._windowEndTime);
timeline._selectPresentationMode(WebInspector.TimelinePanel.Mode.Frames);
InspectorTest.completeTest();
« no previous file with comments | « no previous file | Source/devtools/front_end/FlameChart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698