From 36ca80ce7679f39cfddf9af02a28c58b9bdacc0b Mon Sep 17 00:00:00 2001 From: "Michael[tm] Smith" Date: Fri, 19 Mar 2021 21:47:29 +0900 Subject: [PATCH] Mark Intl.NumberFormat support partial in Safari (#9371) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 https://github.com/mdn/browser-compat-data/issues/9319 * Update javascript/builtins/intl/NumberFormat.json Co-authored-by: Florian Scholz Co-authored-by: Florian Scholz --- javascript/builtins/intl/NumberFormat.json | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/javascript/builtins/intl/NumberFormat.json b/javascript/builtins/intl/NumberFormat.json index d8bd8d965f45ad..e357d1f7eb95f3 100644 --- a/javascript/builtins/intl/NumberFormat.json +++ b/javascript/builtins/intl/NumberFormat.json @@ -164,6 +164,61 @@ } } }, + "currencyDisplay": { + "__compat": { + "description": "currencyDisplay 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 currencyDisplay: 'narrowSymbol'." + }, + "safari_ios": { + "version_added": "10", + "partial_implementation": true, + "notes": "Doesn't support currencyDisplay: 'narrowSymbol'." + }, + "samsunginternet_android": { + "version_added": "12.0" + }, + "webview_android": { + "version_added": "77" + } + }, + "status": { + "experimental": false, + "standard_track": true, + "deprecated": false + } + } + }, "currencySign": { "__compat": { "description": "currencySign option",