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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.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/TimelineUIUtils.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
index 2368e58b171ecbe6987a95a722aa07442732b4f9..6d9a7ffdf067496138137fd9695f51c4b3e23d2b 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
@@ -467,7 +467,7 @@ Timeline.TimelineUIUtils = class {
var width = Timeline.TimelineUIUtils.quadWidth(eventData.clip);
var height = Timeline.TimelineUIUtils.quadHeight(eventData.clip);
if (width && height)
- detailsText = Common.UIString('%d\u2009\u00d7\u2009%d', width, height);
+ detailsText = Common.UIString('%d\xa0\u00d7\xa0%d', width, height);
break;
case recordType.ParseHTML:
var endLine = event.args['endData'] && event.args['endData']['endLine'];

Powered by Google App Engine
This is Rietveld 408576698