tor-browser

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

bug645666.js (149B)


      1 function f1() {
      2    gc();
      3 }
      4 function f2() {
      5    with(this) {};
      6    f1();
      7 }
      8 function f3() {
      9    f2();
     10 }
     11 function f4() {
     12    f3();
     13 }
     14 f3();
     15 f3();
     16 f4();