tor-browser

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

non-views.js (787B)


      1 // |reftest| skip-if(!this.hasOwnProperty('Atomics')||!this.hasOwnProperty('SharedArrayBuffer')||(this.hasOwnProperty('getBuildConfiguration')&&getBuildConfiguration('arm64-simulator'))) -- Atomics,SharedArrayBuffer is not enabled unconditionally, ARM64 Simulator cannot emulate atomics
      2 // Copyright (C) 2017 Mozilla Corporation.  All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 
      5 /*---
      6 esid: sec-atomics.sub
      7 description: >
      8  Test Atomics.sub on view values other than TypedArrays
      9 includes: [testAtomics.js]
     10 features: [ArrayBuffer, Atomics, DataView, SharedArrayBuffer, Symbol, TypedArray]
     11 ---*/
     12 
     13 testWithAtomicsNonViewValues(function(view) {
     14  assert.throws(TypeError, function() {
     15    Atomics.sub(view, 0, 0);
     16  });
     17 });
     18 
     19 reportCompare(0, 0);