summaryrefslogtreecommitdiff
path: root/deps/v8/test/intl/date-format/month-far-future.js
blob: 930ac388b31d4c7529e246599b695d87aab7de8c (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
// Copyright 2018 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.

// Test for crbug.com/801602 .

var locales = [
    "en-u-ca-gregori",
    "fa-u-ca-persian",
    "ar-u-ca-islamic-civil",
    "ar-u-ca-islamic-umalqura",
    "ar-u-ca-islamic-tbla",
    "ar-u-ca-islamic-rgsa",
    "he-u-ca-hebrew",
    "zh-u-ca-chinese",
    "ko-u-ca-dangi",
    "ja-u-ca-japanese",
    "am-u-ca-ethiopic",
    "am-u-ca-ethioaa",
    "hi-u-ca-indian",
    "th-u-ca-buddhist",
];

var hugeNum = 1.7976931348623157e+308;

locales.forEach(function(loc) {
  var df = new Intl.DateTimeFormat(loc, {month: "long"});
  assertFalse(df.format(hugeNum) == '');
}
);