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

Unified Diff: Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js

Issue 1172643002: DevTools: migrate sidebar pane's titleElement to use Toolbar. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: only using latin1 in css Created 5 years, 6 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: Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js
diff --git a/Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js b/Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js
index 163ca55ea3d5b0736662428abc7434c25a443290..09390bcea8c0ac76e2eedf127983bd0b44f801d4 100644
--- a/Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js
+++ b/Source/devtools/front_end/sources/EventListenerBreakpointsSidebarPane.js
@@ -17,7 +17,7 @@ WebInspector.EventListenerBreakpointsSidebarPane = function()
this._categoriesTreeOutline = new TreeOutline();
this._categoriesTreeOutline.element.tabIndex = 0;
this._categoriesTreeOutline.element.classList.add("event-listener-breakpoints");
- this.bodyElement.appendChild(this._categoriesTreeOutline.element);
+ this.element.appendChild(this._categoriesTreeOutline.element);
this._categoryItems = [];
// FIXME: uncomment following once inspector stops being drop targer in major ports.

Powered by Google App Engine
This is Rietveld 408576698