index.html 833 B

12345678910111213141516171819202122232425
  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="hostsimpletest.js"></script>
  12. </head>
  13. <body>
  14. <div class="box">
  15. <p class="title is-3">Webassembly JSON test bed</p>
  16. <p class="subtitle is-5">Console output:</p>
  17. <div id="pasjsconsole">
  18. </div>
  19. </div>
  20. <script>
  21. rtl.showUncaughtExceptions=true;
  22. rtl.run();
  23. </script>
  24. </body>
  25. </html>