tor-browser

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

bug901086.js (254B)


      1 enableGeckoProfiling();
      2 function foo(obj,x,y,z) {
      3    if (!y)
      4 assertEq(0, 1);
      5    obj.x = x;
      6    return y + z;
      7 }
      8 function bar() {
      9    var objz = {x:2}
     10    for(var i = 0; i < 1100; i++) {
     11 foo(objz,1,2,3);
     12 foo(objz, false, "bar", "foo");
     13    }
     14 }
     15 bar();