tor-browser

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

bug1372956.js (126B)


      1 // |jit-test| error: TypeError
      2 x = {};
      3 Array.prototype.push.call(x, 0);
      4 Object.freeze(x);
      5 Array.prototype.unshift.call(x, 0);