| 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 21f0f9756b13289e5e1b850ea0b01415ea575242..aa92643305b36c8ea789075f3616d61459b3b5be 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js
|
| @@ -37,11 +37,10 @@ Components.ObjectPropertiesSection = class extends UI.TreeOutlineInShadow {
|
| * @param {!Array.<!SDK.RemoteObjectProperty>=} extraProperties
|
| */
|
| constructor(object, title, linkifier, emptyPlaceholder, ignoreHasOwnProperty, extraProperties) {
|
| - super();
|
| + super(true);
|
| this._object = object;
|
| this._editable = true;
|
| this.hideOverflow();
|
| - this.setFocusable(false);
|
| this._objectTreeElement = new Components.ObjectPropertiesSection.RootElement(
|
| object, linkifier, emptyPlaceholder, ignoreHasOwnProperty, extraProperties);
|
| this.appendChild(this._objectTreeElement);
|
|
|