descriptor.js (494B)
1 // |reftest| skip-if(!this.hasOwnProperty('Atomics')) -- Atomics is not enabled unconditionally 2 // Copyright (C) 2017 Mozilla Corporation. All rights reserved. 3 // This code is governed by the license found in the LICENSE file. 4 5 /*--- 6 esid: sec-atomics.store 7 description: Testing descriptor property of Atomics.store 8 includes: [propertyHelper.js] 9 features: [Atomics] 10 ---*/ 11 verifyProperty(Atomics, 'store', { 12 enumerable: false, 13 writable: true, 14 configurable: true, 15 }); 16 17 reportCompare(0, 0);