Backed out 2 changesets (bug 1900622) for causing Bug 1908553 and ktlint failure...
[gecko.git] / js / src / tests / test262 / built-ins / Atomics / and / descriptor.js
blob14a0240a834f692329dda814dd0dd34d5b8fed10
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.
5 /*---
6 esid: sec-atomics.and
7 description: Testing descriptor property of Atomics.and
8 includes: [propertyHelper.js]
9 features: [Atomics]
10 ---*/
12 verifyProperty(Atomics, 'and', {
13   enumerable: false,
14   writable: true,
15   configurable: true,
16 });
18 reportCompare(0, 0);