summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/NumberFormat/intl-legacy-constructed-symbol.js
blob: bf038e96ad7ea1ea6bda81cfb17af39256e61353 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2020 Apple Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-intl.numberformat
description: >
    Tests that [[FallbackSymbol]]'s [[Description]] is "IntlLegacyConstructedSymbol" if normative optional is implemented.
author: Yusuke Suzuki
features: [intl-normative-optional]
---*/

let object = new Intl.NumberFormat();
let newObject = Intl.NumberFormat.call(object);
let symbols = Object.getOwnPropertySymbols(newObject);
if (symbols.length !== 0) {
    assert.sameValue(symbols.length, 1);
    assert.sameValue(symbols[0].description, "IntlLegacyConstructedSymbol");
}

reportCompare(0, 0);