summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Locale/invalid-tag-throws-boolean.js
blob: a8ea22421da0cbde1fd11d12ddc965fdde2ef987 (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 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(true);
}, "true is an invalid tag value");
assert.throws(TypeError, function() {
  new Intl.Locale(false);
}, "false is an invalid tag value");

reportCompare(0, 0);