RESOLVED CONFIGURATION CHANGED 205442
[INTL] Fix the group separator string used by Intl.NumberFormat with fr locale
https://bugs.webkit.org/show_bug.cgi?id=205442
Summary [INTL] Fix the group separator string used by Intl.NumberFormat with fr locale
Kevin Aldebert
Reported 2019-12-19 02:02:19 PST
Intl.NumberFormat does not use a group separator to format French (locale: fr) numbers. The space should be used as it works on other browsers that support Intl and fr locale. Reproducible on macOS with Safari. Reproducible on iOS with Safari, Chrome and Firefox. Example: https://codesandbox.io/s/agitated-yalow-9qvub
Attachments
Ross Kirsling
Comment 1 2020-04-14 18:29:38 PDT
Output of these now match Chrome and Firefox (presumably as of the ICU update in r259606): new Intl.NumberFormat('fr', { style: 'currency', currency: 'EUR' }).format(123456.78) new Intl.NumberFormat('fr', { style: 'currency', currency: 'EUR' }).format(123456.78) This should hopefully be confirmable in Safari TP 105.
Note You need to log in before you can comment on or make changes to this bug.