millisecond-undefined.js (689B)
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.plaintime 7 description: Millisecond argument defaults to 0 if not given 8 includes: [temporalHelpers.js] 9 features: [Temporal] 10 ---*/ 11 12 const args = [12, 34, 56]; 13 14 const explicit = new Temporal.PlainTime(...args, undefined); 15 TemporalHelpers.assertPlainTime(explicit, ...args, 0, 0, 0, "explicit"); 16 17 const implicit = new Temporal.PlainTime(...args); 18 TemporalHelpers.assertPlainTime(implicit, ...args, 0, 0, 0, "implicit"); 19 20 reportCompare(0, 0);