mirror of
https://github.com/tc39/test262.git
synced 2025-11-18 04:39:44 +01:00
Previously, "nested" time zone property bags were unwrapped up to one
level. That is, this object:
{
timeZone: {
// ...Temporal.TimeZone methods
}
}
would not be considered to implement the TimeZone protocol, but would have
its timeZone property used instead, if it were passed to an API that
required a TimeZone protocol object.
These nested property bags are no longer supported. Discussion:
https://github.com/tc39/proposal-temporal/issues/2104#issuecomment-1409549753
Corresponding normative PR:
https://github.com/tc39/proposal-temporal/pull/2485
33 lines
962 B
JavaScript
33 lines
962 B
JavaScript
// Copyright (C) 2021 Igalia, S.L. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-temporal.now.plaindate
|
|
description: Conversion of ISO date-time strings to Temporal.TimeZone instances
|
|
features: [Temporal]
|
|
---*/
|
|
|
|
let timeZone = "2021-08-19T17:30";
|
|
assert.throws(RangeError, () => Temporal.Now.plainDate("iso8601", timeZone), "bare date-time string is not a time zone");
|
|
|
|
// The following are all valid strings so should not throw:
|
|
|
|
[
|
|
"2021-08-19T17:30Z",
|
|
"2021-08-19T1730Z",
|
|
"2021-08-19T17:30-07:00",
|
|
"2021-08-19T1730-07:00",
|
|
"2021-08-19T17:30-0700",
|
|
"2021-08-19T1730-0700",
|
|
"2021-08-19T17:30[UTC]",
|
|
"2021-08-19T1730[UTC]",
|
|
"2021-08-19T17:30Z[UTC]",
|
|
"2021-08-19T1730Z[UTC]",
|
|
"2021-08-19T17:30-07:00[UTC]",
|
|
"2021-08-19T1730-07:00[UTC]",
|
|
"2021-08-19T17:30-0700[UTC]",
|
|
"2021-08-19T1730-0700[UTC]",
|
|
].forEach((timeZone) => {
|
|
Temporal.Now.plainDate("iso8601", timeZone);
|
|
});
|