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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.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/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 581d01f5f2e924e51870f33b4977cdd79432582f..ed1d00a1a031347f3e0051491866423bb39a0406 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
@@ -356,6 +356,7 @@ WebInspector.WatchExpression.prototype = {
this._element.removeChildren();
this._objectPropertiesSection = null;
if (!wasThrown && result && result.hasChildren && !result.customPreview()) {
+ headerElement.classList.add("watch-expression-object-header");
this._objectPropertiesSection = new WebInspector.ObjectPropertiesSection(result, headerElement);
this._objectPresentationElement = this._objectPropertiesSection.element;
var objectTreeElement = this._objectPropertiesSection.objectTreeElement();

Powered by Google App Engine
This is Rietveld 408576698