test-console-output-03.html 636 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE HTML>
  2. <html dir="ltr" lang="en-US">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Test the web console output - 03</title>
  6. <!--
  7. - Any copyright is dedicated to the Public Domain.
  8. - http://creativecommons.org/publicdomain/zero/1.0/
  9. -->
  10. </head>
  11. <body>
  12. <p>hello world!</p>
  13. <script type="text/javascript">
  14. function testBodyClassName() {
  15. document.body.className = "test1 tezt2";
  16. return document.body;
  17. }
  18. function testBodyID() {
  19. document.body.id = 'foobarid';
  20. return document.body;
  21. }
  22. function testBodyDataset() {
  23. document.body.dataset.preview = 'zuzu"<a>foo';
  24. return document.body;
  25. }
  26. </script>
  27. </body>
  28. </html>