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

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

Issue 362163004: Timeline: fix 'Range'/Pie Chart overlap when timeline details pan is shrunk (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: moved flex-shrik: to affect flex items, not container 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 | Source/devtools/front_end/timelinePanel.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/timeline/TimelinePanel.js
diff --git a/Source/devtools/front_end/timeline/TimelinePanel.js b/Source/devtools/front_end/timeline/TimelinePanel.js
index 6b29e6e664288b6ce4487d5b3da71f082c3b4f90..5f77ffa6c60cb63bad221aeab0c84737ffd50cd4 100644
--- a/Source/devtools/front_end/timeline/TimelinePanel.js
+++ b/Source/devtools/front_end/timeline/TimelinePanel.js
@@ -1112,7 +1112,7 @@ WebInspector.TimelinePanel.prototype = {
break;
}
}
- pieChartContainer.appendChild(document.createTextNode(title));
+ pieChartContainer.createChild("div").textContent = title;
pieChartContainer.appendChild(WebInspector.TimelineUIUtils.generatePieChart(aggregatedStats));
this.showInDetails(WebInspector.UIString("Selected Range"), pieChartContainer);
},
« no previous file with comments | « no previous file | Source/devtools/front_end/timelinePanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698