tor-browser

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

bug1936689.js (224B)


      1 var bin = wasmTextToBinary(`
      2    (func $f)
      3    (table (export "table") 1 funcref)
      4    (elem (i32.const 0) $f)
      5 `);
      6 var inst = new WebAssembly.Instance(new WebAssembly.Module(bin));
      7 oomTest(() => inst.exports.table.get(0)());