browser.js |
|
0 |
builtin.js |
---
esid: sec-temporal.zoneddatetime
description: Tests that Temporal.ZonedDateTime meets the requirements for built-in objects
info: |
Unless specified otherwise, a built-in object that is callable as a function is a built-in
function object with the characteristics described in 10.3. Unless specified otherwise, the
[[Extensible]] internal slot of a built-in object initially has the value true.
Unless otherwise specified every built-in function and every built-in constructor has the
Function prototype object [...] as the value of its [[Prototype]] internal slot.
features: [Temporal]
--- |
1377 |
calendar-case-insensitive.js |
---
esid: sec-temporal.zoneddatetime
description: Calendar names are case-insensitive
features: [Temporal]
--- |
761 |
calendar-iso-string.js |
---
esid: sec-temporal.zoneddatetime.constructor
description: An ISO string is not valid input for a constructor's calendar param
features: [Temporal]
--- |
661 |
calendar-number.js |
---
esid: sec-temporal.zoneddatetime
description: A number is not allowed to be a calendar
features: [Temporal]
--- |
686 |
calendar-string.js |
---
esid: sec-temporal.zoneddatetime.constructor
description: A calendar ID is valid input for Calendar
features: [Temporal]
--- |
629 |
calendar-undefined.js |
---
esid: sec-temporal.zoneddatetime
description: Calendar argument defaults to the built-in ISO 8601 calendar
features: [BigInt, Temporal]
--- |
810 |
calendar-wrong-type.js |
---
esid: sec-temporal.zoneddatetime
description: >
Appropriate error thrown when argument cannot be converted to a valid string
for Calendar
features: [BigInt, Symbol, Temporal]
--- |
1254 |
compare |
|
|
construction-and-properties.js |
---
esid: sec-temporal.zoneddatetime
description: Construction and properties.
features: [Temporal]
--- |
2015 |
constructor.js |
---
esid: sec-temporal.zoneddatetime
description: Temporal.ZonedDateTime constructor cannot be called as a function
info: |
1. If NewTarget is undefined, throw a TypeError exception.
features: [Temporal]
--- |
607 |
from |
|
|
length.js |
---
esid: sec-temporal.zoneddatetime
description: Temporal.ZonedDateTime.length is 2
info: |
Every built-in function object, including constructors, has a "length" property whose value is
an integer. Unless otherwise specified, this value is equal to the largest number of named
arguments shown in the subclause headings for the function description. Optional parameters
(which are indicated with brackets: [ ]) or rest parameters (which are shown using the form
«...name») are not included in the default argument count.
Unless otherwise specified, the "length" property of a built-in function object has the
attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }.
includes: [propertyHelper.js]
features: [Temporal]
--- |
1236 |
missing-arguments.js |
---
esid: sec-temporal.zoneddatetime
description: TypeError thrown when constructor invoked with no argument
features: [Temporal]
--- |
524 |
name.js |
---
esid: sec-temporal.zoneddatetime
description: Temporal.ZonedDateTime.name is "ZonedDateTime"
info: |
Every built-in function object, including constructors, that is not identified as an anonymous
function has a "name" property whose value is a String. Unless otherwise specified, this value
is the name that is given to the function in this specification.
Unless otherwise specified, the "name" property of a built-in function object, if it exists,
has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }.
includes: [propertyHelper.js]
features: [Temporal]
--- |
1089 |
prop-desc.js |
---
esid: sec-temporal.zoneddatetime
description: The "ZonedDateTime" property of Temporal
includes: [propertyHelper.js]
features: [Temporal]
--- |
693 |
prototype |
|
|
shell.js |
|
0 |
subclass.js |
---
esid: sec-temporal.zoneddatetime
description: Test for Temporal.ZonedDateTime subclassing.
features: [Temporal]
--- |
903 |
timezone-case-insensitive.js |
---
esid: sec-temporal.zoneddatetime.prototype.constructor
description: Time zone names are case insensitive
features: [Temporal]
--- |
634 |
timezone-iso-string.js |
---
esid: sec-temporal.zoneddatetime.constructor
description: An ISO string is not valid input for a constructor's time zone param
features: [Temporal]
--- |
666 |
timezone-string.js |
---
esid: sec-temporal.zoneddatetime
description: Time zone IDs are valid input for a time zone
features: [Temporal]
--- |
643 |
timezone-wrong-type.js |
---
esid: sec-temporal.zoneddatetime
description: >
Appropriate error thrown when argument cannot be converted to a valid string
for time zone
features: [BigInt, Symbol, Temporal]
--- |
1281 |