keys.js (455B)
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-objects 7 description: Temporal has no enumerable properties 8 includes: [compareArray.js] 9 features: [Temporal] 10 ---*/ 11 12 const keys = Object.keys(Temporal); 13 assert.compareArray(keys, []); 14 15 reportCompare(0, 0);