tor-browser

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

bug1293575.js (154B)


      1 function f(y) {
      2    y = 123456;
      3    for (var x = 0; x < 9; ++x) {
      4        z = arguments.callee.arguments;
      5        assertEq(z[0], Math);
      6    }
      7 }
      8 f(Math);