relativeto-propertybag-timezone-string.js (624B)
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.duration.compare 7 description: Time zone IDs are valid input for a time zone 8 features: [Temporal] 9 ---*/ 10 11 // The following are all valid strings so should not throw: 12 13 ["UTC", "+01:00"].forEach((timeZone) => { 14 Temporal.Duration.compare(new Temporal.Duration(1), new Temporal.Duration(), { relativeTo: { year: 2000, month: 5, day: 2, timeZone } }); 15 }); 16 17 reportCompare(0, 0);