tor-browser

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

bug1095973.js (91B)


      1 var C = {};
      2 var B = new Proxy(C, {});
      3 var A = Object.create(B);
      4 B.x = 1;
      5 assertEq(C.x, 1);