| Index: Source/devtools/front_end/components/FlameChart.js
|
| diff --git a/Source/devtools/front_end/components/FlameChart.js b/Source/devtools/front_end/components/FlameChart.js
|
| index 1864e6a5a0bd73f8c5f03f09e5ece28fb4f7f1c5..efcfdd005cd7896e21a3f2336faa631c0c666496 100644
|
| --- a/Source/devtools/front_end/components/FlameChart.js
|
| +++ b/Source/devtools/front_end/components/FlameChart.js
|
| @@ -1052,7 +1052,7 @@ WebInspector.FlameChart.prototype = {
|
|
|
| _buildEntryInfo: function(entryInfo)
|
| {
|
| - var infoTable = document.createElementWithClass("table", "info-table");
|
| + var infoTable = createElementWithClass("table", "info-table");
|
| for (var i = 0; i < entryInfo.length; ++i) {
|
| var row = infoTable.createChild("tr");
|
| row.createChild("td", "title").textContent = entryInfo[i].title;
|
|
|