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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-misc/timeline-filtering.html

Issue 2686993002: DevTools: Turn FilterBar into Toolbar in timeline events log view. (Closed)
Patch Set: rebaseline Created 3 years, 10 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 | third_party/WebKit/Source/devtools/front_end/timeline/EventsTimelineTreeView.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/tracing/timeline-misc/timeline-filtering.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-misc/timeline-filtering.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-misc/timeline-filtering.html
index 13c4cc56849aa84416ec8f4d1b5d78cc04712bc1..1073b3491ae3b9db5447457a4af3d5854ef29c1d 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-misc/timeline-filtering.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-misc/timeline-filtering.html
@@ -50,7 +50,6 @@ function test()
{"name": "Program", "ts": 2590000, "ph": "E", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {}}
];
-
var model = InspectorTest.createPerformanceModelWithEvents(testData);
var view = new Timeline.EventsTimelineTreeView(UI.panels.timeline._filters, null);
view.setModel(model);
@@ -72,11 +71,11 @@ function test()
InspectorTest.addResult("Filtered by 'bar':");
var textFilterUI = filtersControl._textFilterUI;
- textFilterUI.setValue("bar");
+ textFilterUI._internalSetValue("bar", true);
dumpRecords();
InspectorTest.addResult("Filtered by 'foo':");
- textFilterUI.setValue("foo");
+ textFilterUI._internalSetValue("foo", true);
dumpRecords();
InspectorTest.completeTest();
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/timeline/EventsTimelineTreeView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698