Name Description Size Coverage
argument-convert.js --- esid: sec-temporal.plaintime description: PlainTime constructor with non-integer arguments. includes: [temporalHelpers.js] features: [Temporal] --- 2502 -
basic.js --- esid: sec-temporal.plaintime description: Basic tests for the PlainTime constructor. includes: [temporalHelpers.js] features: [Temporal] --- 544 -
browser.js 0 -
builtin.js --- esid: sec-temporal.plaintime description: Tests that Temporal.PlainTime 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] --- 1278 -
compare -
constructor.js --- esid: sec-temporal.plaintime description: Temporal.PlainTime constructor cannot be called as a function info: | 1. If NewTarget is undefined, throw a TypeError exception. features: [Temporal] --- 519 -
from -
get-prototype-from-constructor-throws.js --- esid: sec-temporal.plaintime description: > OrdinaryCreateFromConstructor returns with an abrupt completion. info: | CreateTemporalTime ( time [ , newTarget ] ) ... 2. Let object be ? OrdinaryCreateFromConstructor(newTarget, "%Temporal.PlainTime.prototype%", « [[InitializedTemporalTime]], [[Time]] »). ... OrdinaryCreateFromConstructor ( constructor, intrinsicDefaultProto [ , internalSlotsList ] ) ... 2. Let proto be ? GetPrototypeFromConstructor(constructor, intrinsicDefaultProto). ... GetPrototypeFromConstructor ( constructor, intrinsicDefaultProto ) ... 2. Let proto be ? Get(constructor, "prototype"). ... features: [Temporal] --- 1162 -
hour-undefined.js --- esid: sec-temporal.plaintime description: Hour argument defaults to 0 if not given includes: [temporalHelpers.js] features: [Temporal] --- 638 -
infinity-throws-rangeerror.js --- description: Temporal.PlainTime throws a RangeError if any value is Infinity esid: sec-temporal.plaintime includes: [compareArray.js, temporalHelpers.js] features: [Temporal] --- 3253 -
length.js --- esid: sec-temporal.plaintime description: Temporal.PlainTime.length is 0 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] --- 1149 -
microsecond-undefined.js --- esid: sec-temporal.plaintime description: Microsecond argument defaults to 0 if not given includes: [temporalHelpers.js] features: [Temporal] --- 688 -
millisecond-undefined.js --- esid: sec-temporal.plaintime description: Millisecond argument defaults to 0 if not given includes: [temporalHelpers.js] features: [Temporal] --- 689 -
minute-undefined.js --- esid: sec-temporal.plaintime description: Minute argument defaults to 0 if not given includes: [temporalHelpers.js] features: [Temporal] --- 674 -
name.js --- esid: sec-temporal.plaintime description: Temporal.PlainTime.name is "PlainTime" 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] --- 994 -
nanosecond-undefined.js --- esid: sec-temporal.plaintime description: Nanosecond argument defaults to 0 if not given includes: [temporalHelpers.js] features: [Temporal] --- 686 -
negative-infinity-throws-rangeerror.js --- description: Temporal.PlainDate throws a RangeError if any value is -Infinity esid: sec-temporal.plaintime includes: [compareArray.js, temporalHelpers.js] features: [Temporal] --- 3266 -
negative-zero.js --- esid: sec-temporal.plaintime description: Negative zero arguments are treated as zero. includes: [temporalHelpers.js] features: [Temporal] --- 528 -
prop-desc.js --- esid: sec-temporal.plaintime description: The "PlainTime" property of Temporal includes: [propertyHelper.js] features: [Temporal] --- 598 -
prototype -
second-undefined.js --- esid: sec-temporal.plaintime description: Second argument defaults to 0 if not given includes: [temporalHelpers.js] features: [Temporal] --- 686 -
shell.js 0 -
subclass.js --- esid: sec-temporal.plaintime description: Test for Temporal.PlainTime subclassing. includes: [temporalHelpers.js] features: [Temporal] --- 852 -
throws-if-time-is-invalid.js --- esid: sec-temporal.plaintime description: > Throws if any value is outside the valid bounds. info: | Temporal.PlainTime ( [ hour [ , minute [ , second [ , millisecond [ , microsecond [ , nanosecond ] ] ] ] ] ] ) ... 8. If IsValidTime(hour, minute, second, millisecond, microsecond, nanosecond) is false, throw a RangeError exception. ... features: [Temporal] --- 1003 -