name.js (562B)
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.and 8 description: > 9 Atomics.and.name is "and". 10 includes: [propertyHelper.js] 11 features: [Atomics] 12 ---*/ 13 14 verifyProperty(Atomics.and, 'name', { 15 value: 'and', 16 enumerable: false, 17 writable: false, 18 configurable: true, 19 }); 20 21 reportCompare(0, 0);