tor-browser

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

testBug653396.js (165B)


      1 // |jit-test| error: RangeError
      2 function g(a, b, c, d) {}
      3 function f(a, b, c) {
      4        arguments.length = getMaxArgs() + 1;
      5        g.apply(this, arguments);
      6 }f();