argument-propertybag-offset-not-agreeing-with-timezone.js (808B)
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.from 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 13 const properties = { year: 2021, month: 10, day: 28, offset: "-07:00", timeZone }; 14 assert.throws(RangeError, () => Temporal.ZonedDateTime.from(properties), "offset property not matching time zone is rejected"); 15 assert.throws(RangeError, () => Temporal.ZonedDateTime.from(properties, { offset: "reject" }), "offset property not matching time zone is rejected"); 16 17 reportCompare(0, 0);