| 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);
|
| },
|
|
|