blob: 01dc5bb05c4a7a589783954b4f64b512373c4822 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
|