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

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

Issue 1433753002: DevTools: extract filters from TimelinePanel into a class for re-use (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed tests, addressed review comments Created 5 years, 1 month 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/inspector/tracing/timeline-filtering.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-filtering.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-filtering.html
index 681608b521a4689fe995aa539f3ab3570828873c..2d1ca2c64ac783184a6e1acb216bd4466b7fad22 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-filtering.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-filtering.html
@@ -79,7 +79,8 @@ function test()
dumpRecords();
InspectorTest.addResult("Filtered by 'bar':");
- panel._filters._textFilterUI.setValue("bar");
+ var textFilterUI = panel._filters._textFilterUI;
+ textFilterUI.setValue("bar");
dumpRecords();
InspectorTest.addResult("Collapsed 'bar04' and 'foo13':");
@@ -94,7 +95,7 @@ function test()
dumpRecords();
InspectorTest.addResult("Filtered by 'foo':");
- panel._filters._textFilterUI.setValue("foo");
+ textFilterUI.setValue("foo");
dumpRecords();
InspectorTest.completeTest();

Powered by Google App Engine
This is Rietveld 408576698