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