summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/NumberFormat/throws-for-maximumFractionDigits-over-limit.js
blob: 0f2602bb3ce504decd69d248bebe450b3a741741 (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
// Copyright 2023 Google Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-initializenumberformat
description: >
    Tests that the options maximumFractionDigits limit to the range 0 - 100.
info: |
    InitializeNumberFormat ( numberFormat, locales, options )

    25.a.ii. Set mxfd to ? DefaultNumberOption(mxfd, 0, 100, undefined).

    DefaultNumberOption ( value, minimum, maximum, fallback )

    3. If value is NaN or less than minimum or greater than maximum, throw a RangeError exception.
---*/

let wontThrow = new Intl.NumberFormat(undefined, {maximumFractionDigits: 100});

assert.throws(RangeError, function () {
        return new Intl.NumberFormat(undefined, {maximumFractionDigits: 101});
}, "Throws RangeError when maximumFractionDigits is more than 100.");

reportCompare(0, 0);