RESOLVED FIXED 171819
Web Inspector: RTL: In Timelines > JavaScript & Events, digits for sample count are not localized
https://bugs.webkit.org/show_bug.cgi?id=171819
Summary Web Inspector: RTL: In Timelines > JavaScript & Events, digits for sample cou...
Blaze Burg
Reported 2017-05-08 11:47:37 PDT
Created attachment 309389 [details] Screenshot - RTL .
Attachments
Screenshot - RTL (343.59 KB, image/png)
2017-05-08 11:47 PDT, Blaze Burg
no flags
Patch (1.64 KB, patch)
2017-05-08 16:05 PDT, Blaze Burg
mattbaker: review+
buildbot: commit-queue-
RTL - after (371.10 KB, image/png)
2017-05-08 16:05 PDT, Blaze Burg
no flags
Archive of layout-test-results from ews115 for mac-elcapitan (1.76 MB, application/zip)
2017-05-08 17:25 PDT, Build Bot
no flags
Blaze Burg
Comment 1 2017-05-08 16:05:39 PDT
Blaze Burg
Comment 2 2017-05-08 16:05:55 PDT
Created attachment 309432 [details] RTL - after
Matt Baker
Comment 3 2017-05-08 16:14:08 PDT
Comment on attachment 309431 [details] Patch r=me
Joseph Pecoraro
Comment 4 2017-05-08 16:16:35 PDT
Comment on attachment 309431 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=309431&action=review > Source/WebInspectorUI/UserInterface/Views/ScriptTimelineDataGridNode.js:153 > case "callCount": > - return isNaN(value) ? emDash : value; > + return isNaN(value) ? emDash : value.toLocaleString(); Nice. Other places that sound like they would also apply are: ResourceTimingDataGridNode.js: (statusCode and connectionIdentifier are both simple numbers) case "statusCode": cell.title = resource.statusText || ""; return value || emDash; ... case "domain": case "method": case "scheme": case "protocol": case "remoteAddress": case "connectionIdentifier": if (value) cell.title = value; return value || emDash;
Matt Baker
Comment 5 2017-05-08 16:22:23 PDT
Good catch!
Build Bot
Comment 6 2017-05-08 17:25:29 PDT
Comment on attachment 309431 [details] Patch Attachment 309431 [details] did not pass mac-debug-ews (mac): Output: http://webkit-queues.webkit.org/results/3702001 New failing tests: media/modern-media-controls/macos-fullscreen-media-controls/macos-fullscreen-media-controls-buttons-styles.html
Build Bot
Comment 7 2017-05-08 17:25:30 PDT
Created attachment 309446 [details] Archive of layout-test-results from ews115 for mac-elcapitan The attached test failures were seen while running run-webkit-tests on the mac-debug-ews. Bot: ews115 Port: mac-elcapitan Platform: Mac OS X 10.11.6
Blaze Burg
Comment 8 2017-05-22 11:39:05 PDT
Note You need to log in before you can comment on or make changes to this bug.