| Index: third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js b/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| index 1930fe950c7f07e2aa4542d18acbc5a0c7f157d9..91f67a47c6cd40341bae7509d2b94f81937180a8 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| @@ -835,7 +835,7 @@ Components.ObjectPropertyTreeElement = class extends UI.TreeElement {
|
|
|
| var proxyElement =
|
| this._prompt.attachAndStartEditing(this._editableDiv, this._editingCommitted.bind(this, originalContent));
|
| - this.listItemElement.getComponentSelection().setBaseAndExtent(this._editableDiv, 0, this._editableDiv, 1);
|
| + this.listItemElement.getComponentSelection().selectAllChildren(this._editableDiv);
|
| proxyElement.addEventListener('keydown', this._promptKeyDown.bind(this, originalContent), false);
|
| }
|
|
|
|
|