prop-desc.js (564B)
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.now 7 description: The "Now" property of Temporal 8 includes: [propertyHelper.js] 9 features: [Temporal] 10 ---*/ 11 12 assert.sameValue( 13 typeof Temporal.Now, 14 "object", 15 "`typeof Now` is `object`" 16 ); 17 18 verifyProperty(Temporal, "Now", { 19 writable: true, 20 enumerable: false, 21 configurable: true, 22 }); 23 24 reportCompare(0, 0);