tor-browser

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

testBug756919.js (151B)


      1 function test(x) {
      2    var upvar = "";
      3    function f() { upvar += ""; }
      4    if (x > 0)
      5        test(x - 1);
      6    eval('');
      7 }
      8 
      9 oomTest(() => test(10));