tor-browser

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

bug1886870.js (199B)


      1 // Check proper handling of OOM after toQuotedString().
      2 
      3 oomTest(function () {
      4  new WebAssembly.Instance(
      5    new WebAssembly.Module(wasmTextToBinary('(import "m" "f" (func $f))')),
      6    {}
      7  );
      8 });