tor-browser

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

bug614688.js (172B)


      1 function Foo() {
      2  u = 0;
      3 }
      4 
      5 var x = new Foo();
      6 assertEq(Object.getPrototypeOf(x) === Foo.prototype, true);
      7 assertEq(Object.getPrototypeOf(x) === Object.prototype, false);