tor-browser

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

bug1566992.js (284B)


      1 let { exports: { f } } = wasmEvalText(`
      2 (module
      3    (func (export "f")
      4        (block
      5            i64.const 0xfffffffe00000000
      6            i32.wrap_i64
      7            br_table 0 1
      8        )
      9        unreachable
     10    )
     11 )
     12 `);
     13 
     14 assertErrorMessage(f, WebAssembly.RuntimeError, /unreachable/);