| Index: Source/devtools/front_end/ui/PieChart.js
|
| diff --git a/Source/devtools/front_end/ui/PieChart.js b/Source/devtools/front_end/ui/PieChart.js
|
| index 13501d90702900bfb39a350d68021dcbb4fbdcec..f46ee3d03f9384bde386a862298de97c6d0cfcae 100644
|
| --- a/Source/devtools/front_end/ui/PieChart.js
|
| +++ b/Source/devtools/front_end/ui/PieChart.js
|
| @@ -36,7 +36,7 @@
|
| WebInspector.PieChart = function(size, formatter)
|
| {
|
| var shadowSize = WebInspector.PieChart._ShadowSizePercent;
|
| - this.element = document.createElementWithClass("div", "pie-chart");
|
| + this.element = createElementWithClass("div", "pie-chart");
|
| this.element.appendChild(WebInspector.View.createStyleElement("pieChart.css"));
|
| var svg = this._createSVGChild(this.element, "svg");
|
| svg.setAttribute("width", (100 * (1 + 2 * shadowSize)) + "%");
|
|
|