argument-propertybag-calendar-iso-string.js (981B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2025 Brage Hogstad, University of Bergen. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 esid: sec-temporal.plainmonthday.from 7 description: An ISO 8601 string can be converted to a calendar ID in Calendar 8 includes: [temporalHelpers.js] 9 features: [Temporal] 10 ---*/ 11 12 for (const calendar of [ 13 "2020-01-01", 14 "2020-01-01[u-ca=iso8601]", 15 "2020-01-01T00:00:00.000000000", 16 "2020-01-01T00:00:00.000000000[u-ca=iso8601]", 17 "01-01", 18 "01-01[u-ca=iso8601]", 19 "2020-01", 20 "2020-01[u-ca=iso8601]", 21 ]) { 22 const arg = { monthCode: "M11", day: 18, calendar }; 23 const result = Temporal.PlainMonthDay.from(arg); 24 TemporalHelpers.assertPlainMonthDay(result, "M11", 18, `Calendar created from string "${calendar}"`); 25 assert.sameValue(result.calendarId, "iso8601", "calendar string is iso8601"); 26 } 27 28 reportCompare(0, 0);