index.html 867 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Wasm Javascript Object Bindings - Test bed</title>
  6. <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"> <!-- Prevents caching -->
  7. <meta http-equiv="Pragma" content="no-cache"> <!-- Legacy HTTP 1.0 backward compatibility -->
  8. <meta http-equiv="Expires" content="0"> <!-- Proxies -->
  9. <link href="bulma.min.css" rel="stylesheet">
  10. <link type="stylesheet" src="bulma.min.css">
  11. <script src="hostconfig.js"></script>
  12. <script src="webhost.js"></script>
  13. </head>
  14. <body>
  15. <div class="box">
  16. <p class="title is-3">Webassembly JOB test bed</p>
  17. <p class="subtitle is-5">Console output:</p>
  18. <div id="pasjsconsole">
  19. </div>
  20. </div>
  21. <script>
  22. rtl.showUncaughtExceptions=true;
  23. rtl.run();
  24. </script>
  25. </body>
  26. </html>