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 3957871b11bdd6700c2e7573e1497f2f5fa48143..ea6e83771cc52ae4490e76085c4e3fa5d58c9012 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js |
+++ b/third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js |
@@ -49,7 +49,7 @@ WebInspector.ObjectPropertiesSection = function(object, title, emptyPlaceholder, |
this.element._section = this; |
this.registerRequiredCSS("components/objectValue.css"); |
this.registerRequiredCSS("components/objectPropertiesSection.css"); |
- this.rootElement().childrenListElement.classList.add("source-code", "object-properties-section") |
+ this.rootElement().childrenListElement.classList.add("source-code", "object-properties-section"); |
} |
/** @const */ |
@@ -157,6 +157,7 @@ WebInspector.ObjectPropertiesSection.RootElement = function(object, emptyPlaceho |
this.setExpandable(true); |
this.selectable = false; |
this.toggleOnClick = true; |
+ this.listItemElement.classList.add("object-properties-section-root-element"); |
} |
WebInspector.ObjectPropertiesSection.RootElement.prototype = { |