| Index: third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js b/third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js
|
| index d96d1c66e543bdeb8cd738f0a64ae7a0299c4f2d..ad068357da715226bd0b57b3d1fc0066d7491e96 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/ListWidget.js
|
| @@ -325,8 +325,7 @@ UI.ListWidget.Editor = class {
|
| * @return {!HTMLInputElement}
|
| */
|
| createInput(name, type, title, validator) {
|
| - var input = /** @type {!HTMLInputElement} */ (createElement('input'));
|
| - input.type = type;
|
| + var input = /** @type {!HTMLInputElement} */ (UI.createInput('', type));
|
| input.placeholder = title;
|
| input.addEventListener('input', this._validateControls.bind(this, false), false);
|
| input.addEventListener('blur', this._validateControls.bind(this, false), false);
|
|
|