| Index: third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
|
| index 4982a85afa18c9d13b83a0742f6f114ad6f02b36..5f0db5386135f03a5381a6f241f0c29a58b46637 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
|
| @@ -260,7 +260,7 @@ Sources.WatchExpression = class extends Common.Object {
|
| var proxyElement = this._textPrompt.attachAndStartEditing(newDiv, this._finishEditing.bind(this));
|
| proxyElement.classList.add('watch-expression-text-prompt-proxy');
|
| proxyElement.addEventListener('keydown', this._promptKeyDown.bind(this), false);
|
| - this._element.getComponentSelection().setBaseAndExtent(newDiv, 0, newDiv, 1);
|
| + this._element.getComponentSelection().selectAllChildren(newDiv);
|
| }
|
|
|
| /**
|
|
|