tor-browser

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

bug1076283.js (142B)


      1 function f() {
      2    assertEq(typeof this, "object");
      3 }
      4 this.f();
      5 function gg() {
      6    for (var j = 0; j < 3; ++j) {
      7        f();
      8    }
      9 };
     10 gg();