doc_cmd-break.html 457 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>Debugger test page</title>
  8. </head>
  9. <body>
  10. <script type="text/javascript">
  11. function firstCall() {
  12. window.gLineNumber = Error().lineNumber; secondCall();
  13. }
  14. function secondCall() {
  15. debugger;
  16. }
  17. </script>
  18. </body>
  19. </html>