summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Locale/invalid-tag-throws-number.js
blob: 28b1672f31b5aa364fef2af4f38f34e3be09cbf3 (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
27
28
29
30
31
32
33
34
// Copyright 2018 André Bargull; Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-intl.locale
description: >
    Verifies the type check on the tag argument to Intl.Locale.
info: |
    Intl.Locale( tag [, options] )

    7. If Type(tag) is not String or Object, throw a TypeError exception.
features: [Intl.Locale]
---*/

assert.sameValue(typeof Intl.Locale, "function");

assert.throws(TypeError, function() {
  new Intl.Locale(0);
}, "0 is an invalid tag value");

assert.throws(TypeError, function() {
  new Intl.Locale(1);
}, "1 is an invalid tag value");

assert.throws(TypeError, function() {
  new Intl.Locale(Infinity);
}, "Infinity is an invalid tag value");

assert.throws(TypeError, function() {
  new Intl.Locale(NaN);
}, "NaN is an invalid tag value");


reportCompare(0, 0);