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

Unified Diff: Source/devtools/front_end/main/HelpScreenUntilReload.js

Issue 671463002: DevTools: make flame chart a web component. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: test fixed Created 6 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
« no previous file with comments | « Source/devtools/front_end/inspectorStyle.css ('k') | Source/devtools/front_end/main/Main.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/main/HelpScreenUntilReload.js
diff --git a/Source/devtools/front_end/main/HelpScreenUntilReload.js b/Source/devtools/front_end/main/HelpScreenUntilReload.js
index 44bc4795e15e757b544f9da3be442321e62ba9b0..2dd43108fb54b6f1ece682e5517c1d9da4129ef9 100644
--- a/Source/devtools/front_end/main/HelpScreenUntilReload.js
+++ b/Source/devtools/front_end/main/HelpScreenUntilReload.js
@@ -37,7 +37,7 @@
WebInspector.HelpScreenUntilReload = function(title, message)
{
WebInspector.HelpScreen.call(this, title);
- var p = this.contentElement.createChild("p");
+ var p = this.helpContentElement.createChild("p");
p.classList.add("help-section");
p.textContent = message;
WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this.hide, this);
« no previous file with comments | « Source/devtools/front_end/inspectorStyle.css ('k') | Source/devtools/front_end/main/Main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698