1234567891011121314151617181920 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>TestException</title>
- <script src="errordemo.js"></script>
- </head>
- <body>
- <button id="btn">Throw exception</button>
- <button id="btnhook">Hook events</button>
- <script>
- // Uncomment to test setting hook.
- // rtl.showUncaughtExceptions=true;
- rtl.run();
- </script>
-
- </body>
- </html>
|