| Index: third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js b/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
|
| index 2579859e5493be8f037967f6615234a278b976c0..2372c64696859da9343d012844ce5ce2a977d4cc 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
|
| @@ -109,7 +109,7 @@ UI.TextPrompt = class extends Common.Object {
|
| this._boundClearAutocomplete = this.clearAutocomplete.bind(this);
|
| this._proxyElement = element.ownerDocument.createElement('span');
|
| var shadowRoot = UI.createShadowRootWithCoreStyles(this._proxyElement, 'ui/textPrompt.css');
|
| - this._contentElement = shadowRoot.createChild('div');
|
| + this._contentElement = shadowRoot.createChild('div', 'text-prompt-root');
|
| this._contentElement.createChild('content');
|
| this._proxyElement.style.display = this._proxyElementDisplay;
|
| element.parentElement.insertBefore(this._proxyElement, element);
|
|
|