tor-browser

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

bug621328.js (120B)


      1 function foo() {
      2 };
      3 function f() {
      4    var e = foo;
      5    a = new e();
      6    assertEq(typeof(a), "object");
      7    e=a;
      8 }
      9 f();