mirror of https://github.com/tc39/test262.git
27 lines
751 B
JavaScript
27 lines
751 B
JavaScript
// Copyright 2012 Mozilla Corporation. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
es5id: 12.3.2_FDT_1
|
|
description: Tests that format handles non-finite values correctly.
|
|
author: Norbert Lindenberg
|
|
---*/
|
|
|
|
var invalidValues = [NaN, Infinity, -Infinity];
|
|
|
|
var format = new Intl.DateTimeFormat();
|
|
|
|
invalidValues.forEach(function (value) {
|
|
var error;
|
|
try {
|
|
var result = format.format(value);
|
|
} catch (e) {
|
|
error = e;
|
|
}
|
|
if (error === undefined) {
|
|
$ERROR("Invalid value " + value + " was not rejected.");
|
|
} else if (error.name !== "RangeError") {
|
|
$ERROR("Invalid value " + value + " was rejected with wrong error " + error.name + ".");
|
|
}
|
|
});
|