| Index: Source/devtools/front_end/components/OverviewGrid.js
|
| diff --git a/Source/devtools/front_end/components/OverviewGrid.js b/Source/devtools/front_end/components/OverviewGrid.js
|
| index ea723d5457d691f1053350e206e2774461c1bdf4..660535302ac2063d4d18dd9e97740face4dd763d 100644
|
| --- a/Source/devtools/front_end/components/OverviewGrid.js
|
| +++ b/Source/devtools/front_end/components/OverviewGrid.js
|
| @@ -34,7 +34,7 @@
|
| */
|
| WebInspector.OverviewGrid = function(prefix)
|
| {
|
| - this.element = document.createElement("div");
|
| + this.element = createElement("div");
|
| this.element.id = prefix + "-overview-container";
|
|
|
| this._grid = new WebInspector.TimelineGrid();
|
| @@ -452,7 +452,7 @@ WebInspector.OverviewGrid.WindowSelector = function(parent, position)
|
| {
|
| this._startPosition = position;
|
| this._width = parent.offsetWidth;
|
| - this._windowSelector = document.createElement("div");
|
| + this._windowSelector = createElement("div");
|
| this._windowSelector.className = "overview-grid-window-selector";
|
| this._windowSelector.style.left = this._startPosition + "px";
|
| this._windowSelector.style.right = this._width - this._startPosition + "px";
|
|
|