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