From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- js/src/tests/non262/Intl/supportedValuesOf-unit.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 js/src/tests/non262/Intl/supportedValuesOf-unit.js (limited to 'js/src/tests/non262/Intl/supportedValuesOf-unit.js') diff --git a/js/src/tests/non262/Intl/supportedValuesOf-unit.js b/js/src/tests/non262/Intl/supportedValuesOf-unit.js new file mode 100644 index 0000000000..01dc5bb05c --- /dev/null +++ b/js/src/tests/non262/Intl/supportedValuesOf-unit.js @@ -0,0 +1,20 @@ +// |reftest| skip-if(!this.hasOwnProperty("Intl")) + +const units = Intl.supportedValuesOf("unit"); + +assertEq(new Set(units).size, units.length, "No duplicates are present"); +assertEqArray(units, [...units].sort(), "The list is sorted"); + +const unitRE = /^[a-z]+(-[a-z]+)*$/; +for (let unit of units) { + assertEq(unitRE.test(unit), true, `${unit} is ASCII lower-case, separated by hyphens`); + assertEq(unit.includes("-per-"), false, `${unit} is a simple unit identifier`); +} + +for (let unit of units) { + let obj = new Intl.NumberFormat("en", {style: "unit", unit}); + assertEq(obj.resolvedOptions().unit, unit, `${unit} is supported by NumberFormat`); +} + +if (typeof reportCompare === "function") + reportCompare(true, true); -- cgit v1.2.3