| Index: third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js b/third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js
|
| index f2dbee6b981318ae2bd77d8538a685c6dc497349..2501152959ddd1671c475a6e474392380362adb2 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/AddSourceMapURLDialog.js
|
| @@ -13,7 +13,8 @@ Sources.AddSourceMapURLDialog = class extends UI.HBox {
|
| this.registerRequiredCSS('sources/dialog.css');
|
| this.contentElement.createChild('label').textContent = Common.UIString('Source map URL: ');
|
|
|
| - this._input = this.contentElement.createChild('input');
|
| + this._input = UI.createInput();
|
| + this.contentElement.appendChild(this._input);
|
| this._input.setAttribute('type', 'text');
|
| this._input.addEventListener('keydown', this._onKeyDown.bind(this), false);
|
|
|
|
|