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

Unified Diff: Source/devtools/front_end/timeline/TimelineView.js

Issue 339873002: Fix typo in TimelineView highlighter (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/timeline/TimelineView.js
diff --git a/Source/devtools/front_end/timeline/TimelineView.js b/Source/devtools/front_end/timeline/TimelineView.js
index 55b10ad4a5676d998d1300422ef727286040fba2..c2d8e16899389d1191d3b591727b04fd9e561dd1 100644
--- a/Source/devtools/front_end/timeline/TimelineView.js
+++ b/Source/devtools/front_end/timeline/TimelineView.js
@@ -826,7 +826,7 @@ WebInspector.TimelineView.prototype = {
if (!rowElement || !rowElement.row)
return false;
var presentationRecord = rowElement.row._record;
- if (presentationRecord.collapsed())
+ if (presentationRecord.coalesced())
return false;
var record = presentationRecord.record();
if (this._highlightedQuadRecord === record)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698