missing-arguments.js (449B)
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: TypeError thrown when constructor invoked with no argument 8 features: [Temporal] 9 ---*/ 10 11 assert.throws(TypeError, () => new Temporal.ZonedDateTime()); 12 13 reportCompare(0, 0);