timezone-string-sub-minute-offset.js (678B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2024 Igalia, S.L. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 esid: sec-temporal.now.zoneddatetimeiso 7 description: > 8 Time zone parsing from ISO strings does not accept sub-minute UTC offset as 9 time zone identifier 10 features: [Temporal] 11 ---*/ 12 13 for (const timeZone of ["-12:12:59.9", "2021-08-19T17:30:45.123456789-12:12:59.9[-12:12:59.9]"]) { 14 assert.throws( 15 RangeError, 16 () => Temporal.Now.zonedDateTimeISO(timeZone), 17 `${timeZone} is not a valid time zone string` 18 ); 19 } 20 21 reportCompare(0, 0);