tor-browser

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

bug794947.js (157B)


      1 function f(o)
      2 {
      3    print(o instanceof String);
      4 }
      5 
      6 var g = newGlobal();
      7 f(new Object());
      8 var o1 = g.eval('new Object()');
      9 var o2 = Object.create(o1);
     10 f(o2);