| Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js
|
| index 1b663eed2c529d74f912dc040fcb2b818914f489..a7915cddb9690b574e6cef926c843a5f1bff9ca9 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineTreeView.js
|
| @@ -569,11 +569,11 @@ Timeline.TimelineTreeView.GridNode = class extends DataGrid.SortableDataGridNode
|
| var cell = this.createTD(columnId);
|
| cell.className = 'numeric-column';
|
| var textDiv = cell.createChild('div');
|
| - textDiv.createChild('span').textContent = Common.UIString('%.1f\u2009ms', value);
|
| + textDiv.createChild('span').textContent = Common.UIString('%.1f\xa0ms', value);
|
|
|
| if (showPercents && this._treeView._exposePercentages()) {
|
| textDiv.createChild('span', 'percent-column').textContent =
|
| - Common.UIString('%.1f\u2009%%', value / this._grandTotalTime * 100);
|
| + Common.UIString('%.1f\xa0%%', value / this._grandTotalTime * 100);
|
| }
|
| if (maxTime) {
|
| textDiv.classList.add('background-percent-bar');
|
|
|