-
Notifications
You must be signed in to change notification settings - Fork 0
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 6: Implement "timeZone" support for the "Intl Enum…
…eration API" proposal. r=tcampbell Differential Revision: https://phabricator.services.mozilla.com/D120606
- Loading branch information
Showing
7 changed files
with
114 additions
and
3 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
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
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 timeZones = Intl.supportedValuesOf("timeZone"); | ||
|
||
assertEq(new Set(timeZones).size, timeZones.length, "No duplicates are present"); | ||
assertEqArray(timeZones, [...timeZones].sort(), "The list is sorted"); | ||
|
||
// The pattern doesn't cover the complete time zone syntax, but gives a good first approximation. | ||
const timeZoneRE = /^[a-z0-9_+-]+(\/[a-z0-9_+-]+)*$/i; | ||
for (let timeZone of timeZones) { | ||
assertEq(timeZoneRE.test(timeZone), true, `${timeZone} is ASCII`); | ||
} | ||
|
||
for (let timeZone of timeZones) { | ||
let obj = new Intl.DateTimeFormat("en", {timeZone}); | ||
assertEq(obj.resolvedOptions().timeZone, timeZone, `${timeZone} is supported by DateTimeFormat`); | ||
} | ||
|
||
if (typeof reportCompare === "function") | ||
reportCompare(true, true); |
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