| Index: third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js b/third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js
|
| index 1e39accaa0ba5ca58bb48d37c1b54b4218760e83..00d94cd76b6f057df606350b2d7fffbef890c296 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui_lazy/FilteredListWidget.js
|
| @@ -25,7 +25,8 @@ WebInspector.FilteredListWidget = function(delegate)
|
| this._promptElement = this.contentElement.createChild("div", "filtered-list-widget-input");
|
| this._promptElement.setAttribute("spellcheck", "false");
|
| this._promptElement.setAttribute("contenteditable", "plaintext-only");
|
| - this._prompt = new WebInspector.TextPrompt(this._autocomplete.bind(this));
|
| + this._prompt = new WebInspector.TextPrompt();
|
| + this._prompt.initialize(this._autocomplete.bind(this));
|
| this._prompt.renderAsBlock();
|
| this._prompt.addEventListener(WebInspector.TextPrompt.Events.ItemAccepted, this._onAutocompleted, this);
|
| var promptProxy = this._prompt.attach(this._promptElement);
|
|
|