doc_split-console-paused-reload.html 505 B

1234567891011121314151617181920212223
  1. <!-- Any copyright is dedicated to the Public Domain.
  2. http://creativecommons.org/publicdomain/zero/1.0/ -->
  3. <!doctype html>
  4. <html>
  5. <head>
  6. <meta charset="utf-8"/>
  7. <title>Test page for opening a split-console when execution is paused</title>
  8. </head>
  9. <body>
  10. <script type="text/javascript">
  11. function executeFunction() {
  12. let privateVar = { propKey: "privateVarValue" };
  13. window.foobar = "foobar";
  14. }
  15. executeFunction();
  16. </script>
  17. </body>
  18. </html>