test-console-column.html 560 B

123456789101112131415161718
  1. <!DOCTYPE HTML>
  2. <html dir="ltr" xml:lang="en-US" lang="en-US">
  3. <head>
  4. <!-- Any copyright is dedicated to the Public Domain.
  5. http://creativecommons.org/publicdomain/zero/1.0/ -->
  6. <meta charset="utf-8">
  7. <title>Console test</title>
  8. <script type="text/javascript">
  9. console.info("INLINE SCRIPT:"); console.log('Further');
  10. console.warn("I'm warning you, he will eat up all yr bacon.");
  11. console.error("Error Message");
  12. console.log('Rainbooooww');
  13. console.log('NYAN CATZ');
  14. </script>
  15. </head>
  16. </html>