tor-browser

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

bug-978802.js (281B)


      1 oomTest(() => {
      2    try {
      3        var max = 400;
      4        function f(b) {
      5            if (b) {
      6                f(b - 1);
      7            } else {
      8                g = {};
      9            }
     10            g.apply(null, arguments);
     11        }
     12        f(max - 1);
     13    } catch(exc0) {}
     14    f();
     15 });