| Index: Source/devtools/front_end/sources/TargetsToolbar.js
|
| diff --git a/Source/devtools/front_end/sources/TargetsToolbar.js b/Source/devtools/front_end/sources/TargetsToolbar.js
|
| index 5b0a4a9db1fc530fce59aed57ca8a63b482062f3..a9b700ba5cda98a8e305c739d4beed3ce36be892 100644
|
| --- a/Source/devtools/front_end/sources/TargetsToolbar.js
|
| +++ b/Source/devtools/front_end/sources/TargetsToolbar.js
|
| @@ -8,8 +8,7 @@
|
| */
|
| WebInspector.TargetsToolbar = function()
|
| {
|
| - this.element = document.createElement("div");
|
| - this.element.className = "status-bar scripts-debug-toolbar targets-toolbar hidden";
|
| + this.element = document.createElementWithClass("div", "status-bar scripts-debug-toolbar targets-toolbar hidden");
|
| this._comboBox = new WebInspector.StatusBarComboBox(this._onComboBoxSelectionChange.bind(this));
|
| this.element.appendChild(this._comboBox.element);
|
|
|
|
|