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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/UIList.js

Issue 2389333002: DevTools: update styles for debugger's CallStackSidebarPane (Closed)
Patch Set: reset result after reorder, address comments Created 4 years, 2 months 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/UIList.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/UIList.js b/third_party/WebKit/Source/devtools/front_end/sources/UIList.js
index a32c7f3683a9bb1b38af14df1a234b04c29e3b92..850a7f201bd034e3ade4edaa46779b5ccfbbd8a5 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/UIList.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/UIList.js
@@ -87,8 +87,8 @@ WebInspector.UIList.Item = function(title, subtitle, isLabel)
if (isLabel)
this.element.classList.add("label");
- this.subtitleElement = this.element.createChild("div", "subtitle");
this.titleElement = this.element.createChild("div", "title");
+ this.subtitleElement = this.element.createChild("div", "subtitle");
this._hidden = false;
this._isLabel = !!isLabel;

Powered by Google App Engine
This is Rietveld 408576698