tor-browser

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

bug539553.js (149B)


      1 function g(x) {
      2    assertEq(x.length, 1);
      3 }
      4 
      5 function f() {
      6    arguments.length = 1;
      7    for (var i = 0; i < 9; i++)
      8        g(arguments);
      9 }
     10 
     11 f();