argument-propertybag-offset-not-agreeing-with-timezone.js (909B)
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: Property bag with offset property is rejected if offset does not agree with time zone 8 features: [Temporal] 9 ---*/ 10 11 const timeZone = "+01:00"; 12 const datetime = new Temporal.ZonedDateTime(0n, timeZone); 13 14 const properties = { year: 2021, month: 10, day: 28, offset: "-07:00", timeZone }; 15 assert.throws(RangeError, () => Temporal.ZonedDateTime.compare(properties, datetime), "offset property not matching time zone is rejected (first argument)"); 16 assert.throws(RangeError, () => Temporal.ZonedDateTime.compare(datetime, properties), "offset property not matching time zone is rejected (second argument)"); 17 18 reportCompare(0, 0);