| Index: Source/devtools/front_end/ui/ProgressIndicator.js
|
| diff --git a/Source/devtools/front_end/ui/ProgressIndicator.js b/Source/devtools/front_end/ui/ProgressIndicator.js
|
| index 8831be5b9dc24b26a6ccd20fa217eee839ba0673..e9376801f084f41e6479e4f516e1856bce12e949 100644
|
| --- a/Source/devtools/front_end/ui/ProgressIndicator.js
|
| +++ b/Source/devtools/front_end/ui/ProgressIndicator.js
|
| @@ -35,8 +35,7 @@
|
| */
|
| WebInspector.ProgressIndicator = function()
|
| {
|
| - this.element = document.createElement("div");
|
| - this.element.className = "progress-bar-container";
|
| + this.element = document.createElementWithClass("div", "progress-bar-container");
|
| this._labelElement = this.element.createChild("span");
|
| this._progressElement = this.element.createChild("progress");
|
| this._stopButton = new WebInspector.StatusBarButton(WebInspector.UIString("Cancel"), "progress-bar-stop-button");
|
|
|