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