tor-browser

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

bug1703760.js (244B)


      1 let g = newGlobal({newCompartment: true});
      2 
      3 Debugger(g).onEnterFrame = function(fr) {
      4    fr.eval("")
      5 };
      6 
      7 gczeal(11);
      8 gczeal(9, 9);
      9 
     10 g.eval(`
     11  var count = 0;
     12  function inner() {
     13    if (++count < 20) {
     14      inner();
     15    }
     16  }
     17  inner();
     18 `);