Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/ObjectPropertiesSection.js

Issue 1461783003: [DevTools] Get rid of floats in treeoutline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaseline Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 = {

Powered by Google App Engine
This is Rietveld 408576698