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

Unified Diff: LayoutTests/inspector/timeline/timeline-filtering.html

Issue 180273023: DevTools: encapsulate presentation model in timeline view. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
Index: LayoutTests/inspector/timeline/timeline-filtering.html
diff --git a/LayoutTests/inspector/timeline/timeline-filtering.html b/LayoutTests/inspector/timeline/timeline-filtering.html
index 2e3476aeffa71eeebafc79240ae9eddafd975011..af1203d0b87d02720125522f429d4aeda3ef4964 100644
--- a/LayoutTests/inspector/timeline/timeline-filtering.html
+++ b/LayoutTests/inspector/timeline/timeline-filtering.html
@@ -75,10 +75,8 @@ function test()
var collapseList = {"bar04":true, "foo13": true};
for (var i = 0; i < records.length; ++i) {
var record = records[i];
- if (collapseList[record._record.data.message]) {
+ if (collapseList[record._record.data.message])
record.setCollapsed(true);
- record.clicked = true;
- }
}
model.invalidateFilteredRecords();
dumpRecords();

Powered by Google App Engine
This is Rietveld 408576698