tor-browser

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

bug1138740.js (113B)


      1 with({}){}
      2 x = new Int8Array(1)
      3 function f(y) {
      4    x[0] = y
      5 }
      6 f()
      7 f(3)
      8 f(7)
      9 x.buffer;
     10 f(0);
     11 assertEq(x[0], 0);