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

/*---
esid: sec-intl.locale
description: >
    Intl.Locale instance object created from %LocalePrototype%.
info: |
  Intl.Locale( tag [, options] )

  6. Let locale be ?
    OrdinaryCreateFromConstructor(NewTarget, %LocalePrototype%,
    internalSlotsList).
features: [Intl.Locale]
---*/

const value = new Intl.Locale('en');
assert.sameValue(
    Object.getPrototypeOf(value),
    Intl.Locale.prototype,
    "Object.getPrototypeOf(value) equals the value of Intl.Locale.prototype"
);

reportCompare(0, 0);