Backed out 2 changesets (bug 1908320) for causing wr failures on align-items-baseline...
[gecko.git] / js / src / tests / test262 / built-ins / Temporal / ZonedDateTime / timezone-string.js
blob6c0e2d292de8ea52696942831639945000935b48
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
7 description: Time zone IDs are valid input for a time zone
8 features: [Temporal]
9 ---*/
11 ["UTC", "+01:30"].forEach((timeZone) => {
12   const result = new Temporal.ZonedDateTime(0n, timeZone);
13   assert.sameValue(result.timeZoneId, timeZone, `time zone ID should be "${timeZone}"`);
14 });
16 reportCompare(0, 0);