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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js

Issue 2639243003: DevTools: tweak performance landing page style. (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
index 768b00412ec00d13b9277c9ea98c24bd2a755a39..1e6595d4f0fd3e06576dbfd0677254e0a3776240 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelinePanel.js
@@ -699,16 +699,19 @@ Timeline.TimelinePanel = class extends UI.Panel {
var p = centered.createChild('p');
p.createTextChild(Common.UIString(
- 'The Performance panel lets you record what the browser does during page load and user interaction. The timeline it generates can help you determine why certain parts of your page are slow.'));
+ 'The Performance panel lets you record what the browser does during page load and user interaction. ' +
+ 'The timeline it generates can help you determine why certain parts of your page are slow.'));
p = centered.createChild('p');
p.appendChild(UI.formatLocalized(
- 'To capture a new recording, click the record toolbar button or hit %s. To evaluate page load performance, hit %s to record the reload.',
+ 'To capture a new recording, click the record toolbar button or hit %s. ' +
+ 'To evaluate page load performance, hit %s to record the reload.',
[recordNode, reloadNode]));
p = centered.createChild('p');
p.appendChild(UI.formatLocalized(
- 'After recording, select an area of interest in the overview by dragging. Then, zoom and pan the timeline with the mousewheel or %s keys.',
+ 'After recording, select an area of interest in the overview by dragging. ' +
+ 'Then, zoom and pan the timeline with the mousewheel or %s keys.',
[navigateNode]));
p = centered.createChild('p');
@@ -719,8 +722,9 @@ Timeline.TimelinePanel = class extends UI.Panel {
p = centered.createChild('p', 'timeline-landing-warning');
p.appendChild(UI.formatLocalized(
- 'The %s panel has been enriched with the JavaScript profiler capabilities and is now called %s.%sYou can find the legacy JavaScript CPU profiler under %s\u2192 More Tools \u2192 JavaScript Profiler.',
- [timelineSpan, performanceSpan, createElement('br'), UI.Icon.create('largeicon-menu')]));
+ 'The %s panel has been enriched with the JavaScript profiler capabilities and is now called %s.%s' +
+ 'You can find the legacy JavaScript CPU profiler under %s%s \u2192 More Tools \u2192 JavaScript Profiler.',
+ [timelineSpan, performanceSpan, createElement('p'), createElement('br'), UI.Icon.create('largeicon-menu')]));
this._landingPage.show(this._statusPaneContainer);
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/timeline/timelinePanel.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698