tor-browser

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

bug576398.js (170B)


      1 function K(x) {
      2  with ({});    // prevent compilation
      3  this.x = x; 
      4 }
      5 function f() {
      6  var a = new K(1);
      7  var b = new K(2);
      8  return (a == b);
      9 }
     10 assertEq(f(), false);