index.html 491 B

1234567891011121314151617181920
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>TestException</title>
  7. <script src="errordemo.js"></script>
  8. </head>
  9. <body>
  10. <button id="btn">Throw exception</button>
  11. <button id="btnhook">Hook events</button>
  12. <script>
  13. // Uncomment to test setting hook.
  14. // rtl.showUncaughtExceptions=true;
  15. rtl.run();
  16. </script>
  17. </body>
  18. </html>