tor-browser

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

bug1894586.js (205B)


      1 var it = 100;
      2 function f() {
      3  if (--it < 0) {
      4    return;
      5  }
      6  wasmDumpIon(
      7    wasmTextToBinary(
      8      "(type $x (struct))(global $g (ref null $x) ref.null $x)(func $h)"
      9    )
     10  );
     11  oomTest(f);
     12 }
     13 f();