tor-browser

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

bug-1828396.js (245B)


      1 a = `
      2  fullcompartmentchecks(true);
      3  oomTest(Debugger)
      4 `.split('\n')
      5 c = "";
      6 while (true) {
      7    d = a.shift()
      8    if (d == null) break;
      9    c += d
     10    e(c);
     11    function e(f) {
     12        try {
     13            evaluate(f);
     14        } catch {}
     15    }
     16 }