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

Unified Diff: third_party/WebKit/Source/devtools/front_end/timeline/CountersGraph.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/CountersGraph.js
diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/CountersGraph.js b/third_party/WebKit/Source/devtools/front_end/timeline/CountersGraph.js
index 98a04760082fdb14af48f2b2d94e1f9b341a3285..f1c5851e4dace5b218367464a41b6c8721fe20d2 100644
--- a/third_party/WebKit/Source/devtools/front_end/timeline/CountersGraph.js
+++ b/third_party/WebKit/Source/devtools/front_end/timeline/CountersGraph.js
@@ -406,7 +406,7 @@ Timeline.CountersGraph.CounterUI = class {
setRange(minValue, maxValue) {
var min = this._formatter(minValue);
var max = this._formatter(maxValue);
- this._range.textContent = Common.UIString('[%s\u2009\u2013\u2009%s]', min, max);
+ this._range.textContent = Common.UIString('[%s\xa0\u2013\xa0%s]', min, max);
}
/**

Powered by Google App Engine
This is Rietveld 408576698