calendar-undefined.js (653B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2021 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.plainyearmonth 7 description: Calendar argument defaults to the built-in ISO 8601 calendar 8 features: [Temporal] 9 ---*/ 10 11 const args = [2000, 5]; 12 13 const dateExplicit = new Temporal.PlainYearMonth(...args, undefined); 14 assert.sameValue(dateExplicit.calendarId, "iso8601"); 15 16 const dateImplicit = new Temporal.PlainYearMonth(...args); 17 assert.sameValue(dateImplicit.calendarId, "iso8601"); 18 19 reportCompare(0, 0);