tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

descriptor.js (489B)


      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.add
      7 description: Testing descriptor property of Atomics.add
      8 includes: [propertyHelper.js]
      9 features: [Atomics]
     10 ---*/
     11 
     12 verifyProperty(Atomics, 'add', {
     13  enumerable: false,
     14  writable: true,
     15  configurable: true,
     16 });
     17 
     18 reportCompare(0, 0);