summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Locale/prototype/numeric/branding.js
blob: df1354be4e3ab128335645c5e5d9ec2f894999d5 (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 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-Intl.Locale.prototype.numeric
description: >
    Verifies the branding check for the "numeric" property of the Locale prototype object.
info: |
    Intl.Locale.prototype.numeric

    2. If Type(loc) is not Object or loc does not have an [[InitializedLocale]] internal slot, then
        a. Throw a TypeError exception.
features: [Intl.Locale]
---*/

const propdesc = Object.getOwnPropertyDescriptor(Intl.Locale.prototype, "numeric");
if (propdesc !== undefined) {
  const invalidValues = [
    undefined,
    null,
    true,
    "",
    Symbol(),
    1,
    {},
    Intl.Locale.prototype,
  ];

  for (const invalidValue of invalidValues) {
    assert.throws(TypeError, () => propdesc.get.call(invalidValue));
  }
}

reportCompare(0, 0);