tor-browser

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

bug1941179.js (220B)


      1 oomTest(function () {
      2  new WebAssembly.Instance(
      3    new WebAssembly.Module(
      4      wasmTextToBinary(
      5        '(module (import "m" "f" (func $f) )(func call $f))',
      6      ),
      7    ),
      8    {m: {f: function () { }}},
      9  );
     10 });