tor-browser

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

name.js (567B)


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