Bug 1904139 - Don't re-initialize platform font list from GetDefaultFont. r=jfkthame
[gecko.git] / js / src / tests / test262 / built-ins / Temporal / ZonedDateTime / prototype / equals / argument-propertybag-offset-not-agreeing-with-timezone.js
bloba986ff58d1e5da7fb067c044405254885d7c2bad
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.
5 /*---
6 esid: sec-temporal.zoneddatetime.prototype.equals
7 description: Property bag with offset property is rejected if offset does not agree with time zone
8 features: [Temporal]
9 ---*/
11 const timeZone = new Temporal.TimeZone("+01:00");
12 const instance = new Temporal.ZonedDateTime(0n, timeZone);
14 const properties = { year: 2021, month: 10, day: 28, offset: "-07:00", timeZone };
15 assert.throws(RangeError, () => instance.equals(properties), "offset property not matching time zone is rejected");
17 reportCompare(0, 0);