tor-browser

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

bug1226816.js (119B)


      1 // |jit-test| error: InternalError
      2 
      3 x = 1;
      4 x;
      5 function g(y) {}
      6 g(this);
      7 x = /x/;
      8 function f() {
      9    f(x.flags);
     10 }
     11 f();