canonicalize-calendar.js (631B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2024 Igalia, S.L. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 esid: sec-temporal.plaindate.from 7 description: Calendar ID is canonicalized 8 features: [Temporal, Intl.Era-monthcode] 9 ---*/ 10 11 [ 12 "2024-07-02[u-ca=islamicc]", 13 { year: 1445, month: 12, day: 25, calendar: "islamicc" }, 14 ].forEach((arg) => { 15 const result = Temporal.PlainDate.from(arg); 16 assert.sameValue(result.calendarId, "islamic-civil", "calendar ID is canonicalized"); 17 }); 18 19 reportCompare(0, 0);