Title: [217232] trunk/Source/WebInspectorUI
Revision
217232
Author
[email protected]
Date
2017-05-22 11:38:57 -0700 (Mon, 22 May 2017)

Log Message

Web Inspector: RTL: In Timelines > _javascript_ & Events, digits for sample count are not localized
https://bugs.webkit.org/show_bug.cgi?id=171819

Reviewed by Matt Baker.

* UserInterface/Views/ScriptTimelineDataGridNode.js:
(WebInspector.ScriptTimelineDataGridNode.prototype.createCellContent):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (217231 => 217232)


--- trunk/Source/WebInspectorUI/ChangeLog	2017-05-22 18:36:21 UTC (rev 217231)
+++ trunk/Source/WebInspectorUI/ChangeLog	2017-05-22 18:38:57 UTC (rev 217232)
@@ -1,3 +1,13 @@
+2017-05-22  Brian Burg  <[email protected]>
+
+        Web Inspector: RTL: In Timelines > _javascript_ & Events, digits for sample count are not localized
+        https://bugs.webkit.org/show_bug.cgi?id=171819
+
+        Reviewed by Matt Baker.
+
+        * UserInterface/Views/ScriptTimelineDataGridNode.js:
+        (WebInspector.ScriptTimelineDataGridNode.prototype.createCellContent):
+
 2017-05-22  Nikita Vasilyev  <[email protected]>
 
         Web Inspector: RTL: Text in autocomplete popover should be aligned left

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/ScriptTimelineDataGridNode.js (217231 => 217232)


--- trunk/Source/WebInspectorUI/UserInterface/Views/ScriptTimelineDataGridNode.js	2017-05-22 18:36:21 UTC (rev 217231)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/ScriptTimelineDataGridNode.js	2017-05-22 18:38:57 UTC (rev 217232)
@@ -150,7 +150,7 @@
             return isNaN(value) ? emDash : Number.secondsToString(value, true);
 
         case "callCount":
-            return isNaN(value) ? emDash : value;
+            return isNaN(value) ? emDash : value.toLocaleString();
         }
 
         return super.createCellContent(columnIdentifier, cell);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to