tor-browser

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

bug642894.js (162B)


      1 function foo() {
      2  var x = {};
      3  x.__proto__ = function() { return 0 }
      4  return x;
      5 }
      6 var a = foo();
      7 var b = foo();
      8 assertEq(a.__proto__ === b.__proto__, false);