summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Locale/invalid-tag-throws-null.js
blob: 9078819cd412a307e46953af3e6598593383c57b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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(null);
}, "null is an invalid tag value");

reportCompare(0, 0);