summaryrefslogtreecommitdiff
path: root/test/suite/intl402/ch12/12.3/12.3.2_FDT_1.js
blob: d643d7928b2ff6fde253ddb9fd302be288f84417 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2012 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @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 + ".");
    }
});