tor-browser

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

disabled.js (420B)


      1 // |jit-test| skip-if: wasmCustomPageSizesEnabled()
      2 
      3 // Note the flag above: this only runs if custom page sizes are DISABLED.
      4 wasmValidateText(`(module (memory 0 1))`);
      5 wasmFailValidateText(`(module (memory 0 1 (pagesize 65536)))`, /custom page sizes are disabled|unexpected bits set in flags/);
      6 wasmFailValidateText(`(module (memory 0 1 (pagesize 1)))`, /custom page sizes are disabled|unexpected bits set in flags/);