doc_conditional-breakpoints.html 743 B

123456789101112131415161718192021222324252627282930313233343536
  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. <button onclick="ermahgerd()">Click me!</button>
  11. <script type="text/javascript">
  12. function ermahgerd() {
  13. var a = {};
  14. debugger;
  15. a = "undefined";
  16. a = "null";
  17. a = "42";
  18. a = "true";
  19. a = "'nasu'";
  20. a = "/regexp/";
  21. a = "{}";
  22. a = "function() {}";
  23. a = "(function { return false; })()";
  24. a = "a";
  25. a = "a !== undefined";
  26. a = "a !== null";
  27. a = "b";
  28. }
  29. </script>
  30. </body>
  31. </html>