tor-browser

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

bug1692857.js (222B)


      1 var arrayView = new Float32Array(new ArrayBuffer(40));
      2 
      3 function foo() {
      4    var x = arrayView[0];
      5    if (!x) {
      6        x = arrayView[NaN];
      7    }
      8    return x;
      9 }
     10 
     11 with ({}) {}
     12 for (var i = 0; i < 100; i++) {
     13    foo();
     14 }