summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Locale/invalid-tag-throws-undefined.js
blob: f8184c5a29ebc74ddede0982b5f4f1f52e6818b5 (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
// 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();
}, "(empty) is an invalid tag value");

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

reportCompare(0, 0);