tor-browser

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

bug885976.js (226B)


      1 // |jit-test| error: TypeError
      2 function test(stdlib, foreign) {
      3    "use asm"
      4    var ff = foreign.ff
      5    function f(y) {
      6        y = +y;
      7        ff(0);
      8    }
      9    return f;
     10 };
     11 f = test(this, {ff: Object.defineProperty});
     12 f();