tor-browser

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

bug1958393.js (329B)


      1 // |jit-test| --no-threads; --no-baseline; --no-ion;
      2 
      3 var x = newGlobal({ newCompartment: true });
      4 x.parent = this;
      5 x.eval("(function(){ Debugger(parent); })()");
      6 
      7 oomTest(function () {
      8  new WebAssembly.Instance(
      9    new WebAssembly.Module(
     10      wasmTextToBinary("(func (local i32) i32.const 0 local.set 0)"),
     11    ),
     12  );
     13 });