blob: 9a91f375f031554796da24aa713e02ef424b77b7 [file] [log] [blame]
// Copyright 2019 Google, Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Throws a RangeError if date arg is cast to NaN
info: |
Intl.DateTimeFormat.prototype.formatRange ( startDate , endDate )
1. Let dtf be this value.
2. If Type(dtf) is not Object, throw a TypeError exception.
3. If dtf does not have an [[InitializedDateTimeFormat]] internal slot, throw a TypeError exception.
4. If startDate is undefined or endDate is undefined, throw a RangeError exception.
5. Let x be ? ToNumber(startDate).
6. Let y be ? ToNumber(endDate).
7. If x is greater than y, throw a RangeError exception.
8. Return ? FormatDateTimeRange(dtf, x, y).
FormatDateTimeRange ( dateTimeFormat, x, y )
1. Let parts be ? PartitionDateTimeRangePattern(dateTimeFormat, x, y).
PartitionDateTimeRangePattern ( dateTimeFormat, x, y )
1. Let x be TimeClip(x).
2. If x is NaN, throw a RangeError exception.
3. Let y be TimeClip(y).
4. If y is NaN, throw a RangeError exception.
features: [Intl.DateTimeFormat-formatRange]
---*/
var dtf = new Intl.DateTimeFormat();
var date = new Date();
assert.throws(RangeError, function() {
dtf.formatRange(NaN, date);
}, "NaN/date");
assert.throws(RangeError, function() {
dtf.formatRange(date, NaN);
}, "date/NaN");
assert.throws(RangeError, function() {
dtf.formatRange(NaN, NaN);
}, "NaN/NaN");