mirror of https://github.com/tc39/test262.git
27 lines
1.8 KiB
JavaScript
27 lines
1.8 KiB
JavaScript
|
// Copyright (C) 2022 Igalia, S.L. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
|
||
|
/*---
|
||
|
esid: sec-temporal.zoneddatetime.from
|
||
|
description: Conversion of ISO date-time strings to Temporal.TimeZone instances (with Intl time zones)
|
||
|
features: [Temporal]
|
||
|
---*/
|
||
|
|
||
|
let timeZone = "2021-08-19T17:30[America/Vancouver]";
|
||
|
const result1 = Temporal.ZonedDateTime.from({ year: 2000, month: 5, day: 2, timeZone });
|
||
|
assert.sameValue(result1.timeZone.id, "America/Vancouver", "date-time + IANA annotation is the IANA time zone");
|
||
|
const result2 = Temporal.ZonedDateTime.from({ year: 2000, month: 5, day: 2, timeZone: { timeZone } });
|
||
|
assert.sameValue(result2.timeZone.id, "America/Vancouver", "date-time + IANA annotation is the IANA time zone (string in property bag)");
|
||
|
|
||
|
timeZone = "2021-08-19T17:30Z[America/Vancouver]";
|
||
|
const result3 = Temporal.ZonedDateTime.from({ year: 2000, month: 5, day: 2, timeZone });
|
||
|
assert.sameValue(result3.timeZone.id, "America/Vancouver", "date-time + Z + IANA annotation is the IANA time zone");
|
||
|
const result4 = Temporal.ZonedDateTime.from({ year: 2000, month: 5, day: 2, timeZone: { timeZone } });
|
||
|
assert.sameValue(result4.timeZone.id, "America/Vancouver", "date-time + Z + IANA annotation is the IANA time zone (string in property bag)");
|
||
|
|
||
|
timeZone = "2021-08-19T17:30-07:00[America/Vancouver]";
|
||
|
const result5 = Temporal.ZonedDateTime.from({ year: 2000, month: 5, day: 2, timeZone });
|
||
|
assert.sameValue(result5.timeZone.id, "America/Vancouver", "date-time + offset + IANA annotation is the IANA time zone");
|
||
|
const result6 = Temporal.ZonedDateTime.from({ year: 2000, month: 5, day: 2, timeZone: { timeZone } });
|
||
|
assert.sameValue(result6.timeZone.id, "America/Vancouver", "date-time + offset + IANA annotation is the IANA time zone (string in property bag)");
|