tor-browser

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

bug984766.js (311B)


      1 for (var i = 0; i < 10; i++) {
      2  x = new ArrayBuffer(4)
      3  x.f = (function() {})
      4  new Uint16Array(x).set(JSON.parse)
      5  gcslice()
      6 }
      7 
      8 if (!this.SharedArrayBuffer)
      9  quit(0);
     10 
     11 for (var i = 0; i < 10; i++) {
     12  x = new SharedArrayBuffer(4)
     13  x.f = (function() {})
     14  new Uint16Array(x).set(JSON.parse)
     15  gcslice()
     16 }