tor-browser

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

define-frozen-property.js (101B)


      1 function foo(x) {
      2  x.c = 10;
      3  assertEq(x.c, undefined);
      4 }
      5 x = {a:0,b:1};
      6 Object.freeze(x);
      7 foo(x);