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

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

Issue 2174863003: DevTools: traverse widget hierarchy to reveal views. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: lcean Created 4 years, 5 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/components/EventListenersView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/EventListenersView.js b/third_party/WebKit/Source/devtools/front_end/components/EventListenersView.js
index 83ef420c52685c2c481388f8a748a63eac9f0dcd..13a48968bf86526d9291ac0052e0cfea4e2a6b32 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/EventListenersView.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/EventListenersView.js
@@ -23,7 +23,7 @@ WebInspector.EventListenersView = function(element, changeCallback)
this._treeOutline.setComparator(WebInspector.EventListenersTreeElement.comparator);
this._treeOutline.element.classList.add("monospace");
this._element.appendChild(this._treeOutline.element)
- this._emptyHolder = createElementWithClass("div", "info");
+ this._emptyHolder = createElementWithClass("div", "gray-info-message");
this._emptyHolder.textContent = WebInspector.UIString("No Event Listeners");
this._linkifier = new WebInspector.Linkifier();
/** @type {!Map<string, !WebInspector.EventListenersTreeElement>} */

Powered by Google App Engine
This is Rietveld 408576698