summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Locale/prototype/getTimeZones/output-array-undefined.js
blob: 3de4ce7cd996e0db6ef23236f005f3d63e4542f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// |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.getTimeZones
description: >
    Checks that the return value of Intl.Locale.prototype.timeZones is undefined
    when no region subtag is used.
info: |
  get Intl.Locale.prototype.timeZones
  ...
  4. If the unicode_language_id production of locale does not contain the
  ["-" unicode_region_subtag] sequence, return undefined.
features: [Intl.Locale,Intl.Locale-info]
---*/

assert.sameValue(new Intl.Locale('en').getTimeZones(), undefined);

reportCompare(0, 0);