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

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

Issue 2781193002: DevTools: Adopt nbsp as unit & thousands separator for broader font support (Closed)
Patch Set: update all uses of thinsp. rebaseline tests. Created 3 years, 9 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/timeline/EventsTimelineTreeView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/EventsTimelineTreeView.js b/third_party/WebKit/Source/devtools/front_end/timeline/EventsTimelineTreeView.js
index 1a719b6a5f0005b99ba5a01999cd61140bc2c198..85825b1c2a5fc4fdc810ddbadd5b55c5605da328 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/EventsTimelineTreeView.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/EventsTimelineTreeView.js
@@ -152,8 +152,8 @@ Timeline.EventsTimelineTreeView.Filters = class extends Common.Object {
var durationFilterUI = new UI.ToolbarComboBox(durationFilterChanged.bind(this));
for (var durationMs of Timeline.EventsTimelineTreeView.Filters._durationFilterPresetsMs) {
durationFilterUI.addOption(durationFilterUI.createOption(
- durationMs ? Common.UIString('\u2265 %d\u2009ms', durationMs) : Common.UIString('All'),
- durationMs ? Common.UIString('Hide records shorter than %d\u2009ms', durationMs) :
+ durationMs ? Common.UIString('\u2265 %d\xa0ms', durationMs) : Common.UIString('All'),
+ durationMs ? Common.UIString('Hide records shorter than %d\xa0ms', durationMs) :
Common.UIString('Show all records'),
String(durationMs)));
}

Powered by Google App Engine
This is Rietveld 408576698