test-webconsole-error-observer.html 680 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE HTML>
  2. <html dir="ltr" xml:lang="en-US" lang="en-US">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>WebConsoleErrorObserver test - bug 611032</title>
  6. <!-- Any copyright is dedicated to the Public Domain.
  7. http://creativecommons.org/publicdomain/zero/1.0/ -->
  8. <script type="text/javascript">
  9. console.log("log Bazzle");
  10. console.info("info Bazzle");
  11. console.warn("warn Bazzle");
  12. console.error("error Bazzle");
  13. var foo = {};
  14. foo.bazBug611032();
  15. </script>
  16. <style type="text/css">
  17. .foo { color: cssColorBug611032; }
  18. </style>
  19. </head>
  20. <body>
  21. <h1>WebConsoleErrorObserver test</h1>
  22. </body>
  23. </html>