argument-propertybag-timezone-string.js (704B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2022 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.zoneddatetime.compare 7 description: Time zone IDs are valid input for a time zone 8 features: [Temporal] 9 ---*/ 10 11 ["UTC", "+01:30"].forEach((timeZone) => { 12 const epoch = new Temporal.ZonedDateTime(0n, timeZone); 13 14 // These should be valid input and not throw 15 Temporal.ZonedDateTime.compare({ year: 2020, month: 5, day: 2, timeZone }, epoch); 16 Temporal.ZonedDateTime.compare(epoch, { year: 2020, month: 5, day: 2, timeZone }); 17 }); 18 19 reportCompare(0, 0);