tor-browser

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

bug1546228.js (121B)


      1 function Obj() {
      2    this.a = 1;
      3 }
      4 Obj.prototype = this;
      5 
      6 function test() {
      7    return o.a;
      8 }
      9 var o = new Obj();
     10 test();