mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 07:57:46 +00:00
LibJS: Support IANA legacy names in the Temporal ISO 8601 grammar
This is a normative change in the Temporal spec.
See: 2419680
This commit is contained in:
parent
41791146fd
commit
6850f25840
3 changed files with 30 additions and 0 deletions
|
@ -18,6 +18,9 @@ describe("normal behavior", () => {
|
|||
["GMT", "UTC"],
|
||||
["Etc/UTC", "UTC"],
|
||||
["Etc/GMT", "UTC"],
|
||||
["Etc/GMT0", "UTC"], // IANA legacy name
|
||||
["Etc/GMT+0", "UTC"], // IANA legacy name
|
||||
["Etc/GMT-0", "UTC"], // IANA legacy name
|
||||
["Etc/GMT+6", "Etc/GMT+6"],
|
||||
["Etc/GMT-6", "Etc/GMT-6"],
|
||||
["Etc/GMT+12", "Etc/GMT+12"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue