tor-browser

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

bug-1833339.js (292B)


      1 let {a} = wasmEvalText(`(module
      2  (tag (param ${'i32 '.repeat(10)}))
      3 
      4  (func (result ${'i32 '.repeat(130)})
      5    unreachable
      6  )
      7  (func (export "a")
      8    call 0
      9 try
     10 catch 0
     11 	unreachable
     12 end
     13    unreachable
     14  )
     15 )
     16 `).exports;
     17 assertErrorMessage(a, WebAssembly.RuntimeError, /unreachable/);