name.js (557B)
1 // |reftest| skip-if(!this.hasOwnProperty('Atomics')) -- Atomics is not enabled unconditionally 2 // Copyright (C) 2015 André Bargull. All rights reserved. 3 // Copyright (C) 2017 Mozilla Corporation. All rights reserved. 4 // This code is governed by the BSD license found in the LICENSE file. 5 6 /*--- 7 esid: sec-atomics.or 8 description: > 9 Atomics.or.name is "or". 10 includes: [propertyHelper.js] 11 features: [Atomics] 12 ---*/ 13 14 verifyProperty(Atomics.or, 'name', { 15 value: 'or', 16 enumerable: false, 17 writable: false, 18 configurable: true, 19 }); 20 21 reportCompare(0, 0);