Skip to content

Commit

Permalink
Mark Intl.NumberFormat support partial in Safari (#9371)
Browse files Browse the repository at this point in the history
* Mark Intl.NumberFormat support partial in Safari

Code examination of https://trac.webkit.org/changeset/266031/webkit
indicates that support for currencyDisplay: 'narrowSymbol' wasn’t
added to WebKit until 2020-08-22 — and didn’t make it into Safari 14
(confirmed by testing), which was released 2020-09-16.

Fixes #9319

* Update javascript/builtins/intl/NumberFormat.json

Co-authored-by: Florian Scholz <fscholz@mozilla.com>

Co-authored-by: Florian Scholz <fscholz@mozilla.com>
  • Loading branch information
sideshowbarker and Elchi3 authored Mar 19, 2021
1 parent 3aa7238 commit 36ca80c
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions javascript/builtins/intl/NumberFormat.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,61 @@
}
}
},
"currencyDisplay": {
"__compat": {
"description": "<code>currencyDisplay</code> option",
"support": {
"chrome": {
"version_added": "77"
},
"chrome_android": {
"version_added": "77"
},
"edge": {
"version_added": "79"
},
"firefox": {
"version_added": "78"
},
"firefox_android": {
"version_added": "79"
},
"ie": {
"version_added": false
},
"nodejs": {
"version_added": "12.11.0"
},
"opera": {
"version_added": "64"
},
"opera_android": {
"version_added": "55"
},
"safari": {
"version_added": "10",
"partial_implementation": true,
"notes": "Doesn't support <code>currencyDisplay: 'narrowSymbol'</code>."
},
"safari_ios": {
"version_added": "10",
"partial_implementation": true,
"notes": "Doesn't support <code>currencyDisplay: 'narrowSymbol'</code>."
},
"samsunginternet_android": {
"version_added": "12.0"
},
"webview_android": {
"version_added": "77"
}
},
"status": {
"experimental": false,
"standard_track": true,
"deprecated": false
}
}
},
"currencySign": {
"__compat": {
"description": "<code>currencySign</code> option",
Expand Down

0 comments on commit 36ca80c

Please sign in to comment.