Open
Description
Temporal.ZonedDateTime.from("2025-01-01T00:00:00+00:0000[Europe/London]");
In Firefox Nightly, this code raises an error (Uncaught RangeError: can't parse zoned date-time: time separator ':' must be consistent
). But reference polyfill doesn't raise an error.
My understanding is that spec requires UTCOffset
with sub-minute precision should be hh:mm:ss
or hhmmss
formats, which means the polyfill doesn't align the spec.