summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Locale/prototype/getTextInfo/output-object-keys.js
blob: 3fbb36a4d035f0c3c7c5fabd268619627dea7f92 (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
// |reftest| skip -- Intl.Locale-info is not supported
// Copyright 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-intl.locale.prototype.getTextInfo
description: >
    Checks that the return value of Intl.Locale.prototype.getTextInfo is an Object
    with the correct keys and properties.
info: |
  get Intl.Locale.prototype.getTextInfo
  ...
  7. Perform ! CreateDataPropertyOrThrow(info, "direction", dir).
features: [Intl.Locale,Intl.Locale-info]
includes: [propertyHelper.js, compareArray.js]
---*/

const result = new Intl.Locale('en').getTextInfo();

assert.compareArray(Reflect.ownKeys(result), ['direction']);

verifyProperty(result, 'direction', {
  writable: true,
  enumerable: true,
  configurable: true
});

const direction = new Intl.Locale('en').getTextInfo().direction;
assert(
  direction === 'rtl' || direction === 'ltr',
  'value of the `direction` property'
);

reportCompare(0, 0);