tor-browser

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

array-new-fixed.js (192B)


      1 // |jit-test| include:wasm.js;
      2 
      3 // array.new_fixed has limit of 10_000 operands
      4 wasmFailValidateText(`(module
      5  (type $a (array i32))
      6  (func
      7    array.new_fixed $a 10001
      8  )
      9 )`, /too many/);