Name Description Size
branding.js --- esid: sec-Intl.RelativeTimeFormat.prototype.formatToParts description: Verifies the branding check for the "formatToParts" function of the RelativeTimeFormat prototype object. info: | Intl.RelativeTimeFormat.prototype.formatToParts( value, unit ) 2. If Type(relativeTimeFormat) is not Object or relativeTimeFormat does not have an [[InitializedRelativeTimeFormat]] internal slot whose value is true, throw a TypeError exception. features: [Intl.RelativeTimeFormat] --- 1470
browser.js 0
en-us-numeric-always.js --- esid: sec-Intl.RelativeTimeFormat.prototype.formatToParts description: Checks the behavior of Intl.RelativeTimeFormat.prototype.formatToParts() in English. features: [Intl.RelativeTimeFormat] locale: [en-US] --- 3951
en-us-numeric-auto.js --- esid: sec-Intl.RelativeTimeFormat.prototype.formatToParts description: Checks the behavior of Intl.RelativeTimeFormat.prototype.formatToParts() in English. features: [Intl.RelativeTimeFormat] locale: [en-US] --- 4979
en-us-style-short.js --- esid: sec-Intl.RelativeTimeFormat.prototype.formatToParts description: Checks the behavior of Intl.RelativeTimeFormat.prototype.formatToParts() in English. features: [Intl.RelativeTimeFormat] locale: [en-US] --- 4506
length.js --- esid: sec-Intl.RelativeTimeFormat.prototype.formatToParts description: Checks the "length" property of Intl.RelativeTimeFormat.prototype.formatToParts(). info: | Unless specified otherwise in this document, the objects, functions, and constructors described in this standard are subject to the generic requirements and restrictions specified for standard built-in ECMAScript objects in the ECMAScript 2019 Language Specification, 10th edition, clause 17, or successor. The RelativeTimeFormat constructor is a standard built-in property of the Intl object. 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: [Intl.RelativeTimeFormat] --- 1548
name.js --- esid: sec-Intl.RelativeTimeFormat.prototype.formatToParts description: Checks the "name" property of Intl.RelativeTimeFormat.prototype.formatToParts(). info: | Unless specified otherwise in this document, the objects, functions, and constructors described in this standard are subject to the generic requirements and restrictions specified for standard built-in ECMAScript objects in the ECMAScript 2019 Language Specification, 10th edition, clause 17, or successor. 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: [Intl.RelativeTimeFormat] --- 1304
pl-pl-style-long.js --- esid: sec-Intl.RelativeTimeFormat.prototype.format description: Checks the behavior of Intl.RelativeTimeFormat.prototype.format() in Polish. features: [Intl.RelativeTimeFormat] locale: [pl-PL] --- 4918
pl-pl-style-narrow.js --- esid: sec-Intl.RelativeTimeFormat.prototype.format description: Checks the behavior of Intl.RelativeTimeFormat.prototype.format() in Polish. features: [Intl.RelativeTimeFormat] locale: [pl-PL] --- 4669
pl-pl-style-short.js --- esid: sec-Intl.RelativeTimeFormat.prototype.format description: Checks the behavior of Intl.RelativeTimeFormat.prototype.format() in Polish. features: [Intl.RelativeTimeFormat] locale: [pl-PL] --- 4674
prop-desc.js --- esid: sec-Intl.RelativeTimeFormat.prototype.formatToParts description: Checks the "formatToParts" property of the RelativeTimeFormat prototype object. info: | Intl.RelativeTimeFormat.prototype.formatToParts () Unless specified otherwise in this document, the objects, functions, and constructors described in this standard are subject to the generic requirements and restrictions specified for standard built-in ECMAScript objects in the ECMAScript 2019 Language Specification, 10th edition, clause 17, or successor. Every other data property described in clauses 18 through 26 and in Annex B.2 has the attributes { [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true } unless otherwise specified. includes: [propertyHelper.js] features: [Intl.RelativeTimeFormat] --- 1251
result-type.js --- esid: sec-Intl.RelativeTimeFormat.prototype.formatToParts description: Checks the handling of plural unit arguments to Intl.RelativeTimeFormat.prototype.formatToParts(). info: | FormatRelativeTimeToParts ( relativeTimeFormat, value, unit ) 3. Let n be 0. 4. For each part in parts, do: a. Let O be ObjectCreate(%ObjectPrototype%). b. Perform ! CreateDataPropertyOrThrow(O, "type", part.[[Type]]). c. Perform ! CreateDataPropertyOrThrow(O, "value", part.[[Value]]). d. If part has a [[Unit]] field, i. Perform ! CreateDataPropertyOrThrow(O, "unit", part.[[Unit]]). e. Perform ! CreateDataPropertyOrThrow(result, ! ToString(n), O). f. Increment n by 1. features: [Intl.RelativeTimeFormat] includes: [propertyHelper.js] --- 2450
shell.js 0
unit-invalid.js --- esid: sec-Intl.RelativeTimeFormat.prototype.formatToParts description: Checks the handling of invalid unit arguments to Intl.RelativeTimeFormat.prototype.formatToParts(). info: | SingularRelativeTimeUnit ( unit ) 10. If unit is not one of "second", "minute", "hour", "day", "week", "month", "quarter", "year", throw a RangeError exception. features: [Intl.RelativeTimeFormat] --- 1186
unit-plural.js --- esid: sec-Intl.RelativeTimeFormat.prototype.formatToParts description: Checks the handling of plural unit arguments to Intl.RelativeTimeFormat.prototype.formatToParts(). info: | SingularRelativeTimeUnit ( unit ) 2. If unit is "seconds", return "second". 3. If unit is "minutes", return "minute". 4. If unit is "hours", return "hour". 5. If unit is "days", return "day". 6. If unit is "weeks", return "week". 7. If unit is "months", return "month". 8. If unit is "quarters", return "quarter". 9. If unit is "years", return "year". features: [Intl.RelativeTimeFormat] --- 1773
value-non-finite.js --- esid: sec-Intl.RelativeTimeFormat.prototype.formatToParts description: Checks the handling of invalid value arguments to Intl.RelativeTimeFormat.prototype.formatToParts(). info: | Intl.RelativeTimeFormat.prototype.formatToParts( value, unit ) 3. Let value be ? ToNumber(value). PartitionRelativeTimePattern ( relativeTimeFormat, value, unit ) 4. If isFinite(value) is false, then throw a RangeError exception. features: [Intl.RelativeTimeFormat] --- 1215
value-symbol.js --- esid: sec-Intl.RelativeTimeFormat.prototype.formatToParts description: Checks the handling of invalid value arguments to Intl.RelativeTimeFormat.prototype.formatToParts(). info: | Intl.RelativeTimeFormat.prototype.formatToParts( value, unit ) 3. Let value be ? ToNumber(value). features: [Intl.RelativeTimeFormat] --- 722
value-tonumber.js --- esid: sec-Intl.RelativeTimeFormat.prototype.format description: Checks the handling of non-number value arguments to Intl.RelativeTimeFormat.prototype.format(). info: | Intl.RelativeTimeFormat.prototype.format( value, unit ) 3. Let value be ? ToNumber(value). features: [Intl.RelativeTimeFormat] --- 1571