tor-browser

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

bug782337.js (150B)


      1 gc();
      2 
      3 function recur(n)
      4 {
      5    if (n == 0) {
      6 gcslice();
      7 gc();
      8    } else {
      9 recur(n-1);
     10    }
     11    var obj = new Object();
     12 }
     13 
     14 gcslice(1);
     15 recur(10);