options-object.js (736B)
1 // |reftest| skip-if(!this.hasOwnProperty('Temporal')) -- Temporal is not enabled unconditionally 2 // Copyright (C) 2022 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.plainmonthday.prototype.from 7 description: Empty object may be used as options 8 includes: [temporalHelpers.js] 9 features: [Temporal] 10 ---*/ 11 12 TemporalHelpers.assertPlainMonthDay( 13 Temporal.PlainMonthDay.from({ monthCode: "M12", day: 15 }, {}), "M12", 15, 14 "options may be an empty plain object" 15 ); 16 17 TemporalHelpers.assertPlainMonthDay( 18 Temporal.PlainMonthDay.from({ monthCode: "M12", day: 15 }, () => {}), "M12", 15, 19 "options may be an empty function object" 20 ); 21 22 reportCompare(0, 0);