tor-browser

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

bug1234414.js (188B)


      1 oomTest(() => {
      2    var max = 400;
      3    function f(b) {
      4        if (b) {
      5            f(b - 1);
      6        } else eval('"use strict"; const z = w; z = 1 + w; c = 5');
      7    }
      8    f(max - 1);
      9 });