tor-browser

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

js-wasm-cycle.tentative.html (344B)


      1 <!doctype html>
      2 <title>Check bindings in JavaScript and WebAssembly cycle (JS higher)</title>
      3 
      4 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <script type=module>
      7 setup({ single_test: true });
      8 import { f } from "./resources/js-wasm-cycle.js";
      9 assert_equals(f(), 24);
     10 done();
     11 </script>