tor-browser

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

bug-1977707.js (285B)


      1 var x = newGlobal({ newCompartment: true });
      2 x.parent = [];
      3 x.eval("Debugger(parent).onEnterFrame = function (y) { y.eval(0 + 'z') }");
      4 oomTest(function () {
      5  new WebAssembly.Instance(
      6    new WebAssembly.Module(wasmTextToBinary('(module (func (export "m")))')),
      7  ).exports.m();
      8 });