calendar-undefined.js (735B)
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.zoneddatetime 7 description: Calendar argument defaults to the built-in ISO 8601 calendar 8 features: [BigInt, Temporal] 9 ---*/ 10 11 const args = [957270896987654321n, "UTC"]; 12 13 const explicit = new Temporal.ZonedDateTime(...args, undefined); 14 assert.sameValue(explicit.calendarId, "iso8601", "calendar string should be iso8601"); 15 16 const implicit = new Temporal.ZonedDateTime(...args); 17 assert.sameValue(implicit.calendarId, "iso8601", "calendar string should be iso8601"); 18 19 reportCompare(0, 0);