forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1670033 - Part 7: Implement "unit" support for the "Intl Enumerat…
…ion API" proposal. r=tcampbell Differential Revision: https://phabricator.services.mozilla.com/D120607
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); |