summaryrefslogtreecommitdiff
path: root/deps/v8/test/intl/date-format/constructor-date-time-style.js
blob: f4bc40b3968dc682da629a69b75f755d69643c21 (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
// Copyright 2019 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Flags: --harmony-intl-datetime-style

var validStyle = ["full", "long", "medium", "short", undefined];
var invalidStyle = ["narrow", "numeric"];

validStyle.forEach(function(dateStyle) {
  validStyle.forEach(function(timeStyle) {
    assertDoesNotThrow(() =>
        new Intl.DateTimeFormat("en", {dateStyle, timeStyle}));
  });

  invalidStyle.forEach(function(timeStyle) {
    assertThrows(() =>
        new Intl.DateTimeFormat("en", {dateStyle, timeStyle}), RangeError);
  });
}
);

invalidStyle.forEach(function(dateStyle) {
  validStyle.forEach(function(timeStyle) {
    assertThrows(() =>
        new Intl.DateTimeFormat("en", {dateStyle, timeStyle}), RangeError);
  });
  invalidStyle.forEach(function(timeStyle) {
    assertThrows(() =>
        new Intl.DateTimeFormat("en", {dateStyle, timeStyle}), RangeError);
  });
}
);