f6d2255a03
This is a reland of 915f729afb
Original change's description:
> Add regression tests for 4 calendar bugs
>
> These bugs was fixed by ICU68
>
> Bug: v8:10526, v8:10527, v8:10528, v8:10529
> Change-Id: I8d0dcb52d849f742e0a29314ac8a148370f60a1a
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2527086
> Reviewed-by: Shu-yu Guo <syg@chromium.org>
> Commit-Queue: Frank Tang <ftang@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#71062}
Cq-Include-Trybots: luci.v8.try:v8_android_arm64_n5x_rel_ng
Bug: v8:10526
Bug: v8:10527
Bug: v8:10528
Bug: v8:10529
Change-Id: I8857fb8c104bb4bede8fe816574bfd46ccbcd082
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2536737
Commit-Queue: Frank Tang <ftang@chromium.org>
Reviewed-by: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#71244}
31 lines
1.4 KiB
JavaScript
31 lines
1.4 KiB
JavaScript
// Copyright 2020 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 date format in Islamic and Islamic-rgsa calendars of dates prior
|
|
// to 0622-07-18
|
|
// On Android, islamic and islamic-rgsac calendar are only available on ar
|
|
// and fa locales.
|
|
let dateOK = new Date (Date.UTC(622, 6, 18));
|
|
let dateKO = new Date (Date.UTC(622, 6, 17));
|
|
let dateDisplay = new Intl.DateTimeFormat (
|
|
'ar-u-ca-islamic',
|
|
{ timeZone : 'UTC', year : 'numeric', month :'long',
|
|
day : 'numeric', weekday : 'long' });
|
|
let dateDisplay2 = new Intl.DateTimeFormat (
|
|
'ar-u-ca-islamic-rgsa',
|
|
{ timeZone : 'UTC', year : 'numeric', month :'long',
|
|
day : 'numeric', weekday : 'long' });
|
|
assertEquals("Thu, 18 Jul 0622 00:00:00 GMT",
|
|
dateOK.toUTCString(), "dateOK.toUTCString()");
|
|
assertEquals("Wed, 17 Jul 0622 00:00:00 GMT",
|
|
dateKO.toUTCString(), "dateKO.toUTCString()");
|
|
assertEquals("الخميس، 1 محرم 1 هـ",
|
|
dateDisplay.format(dateOK), "dateDisplay.format(dateOK)");
|
|
assertEquals("الأربعاء، 30 ذو الحجة 0 هـ",
|
|
dateDisplay.format(dateKO), "dateDisplay.format(dateKO)");
|
|
assertEquals("الخميس، 1 محرم 1 هـ",
|
|
dateDisplay2.format(dateOK), "dateDisplay.format(dateOK)");
|
|
assertEquals("الأربعاء، 30 ذو الحجة 0 هـ",
|
|
dateDisplay2.format(dateKO), "dateDisplay.format(dateKO)");
|