test-console-clear.html 375 B

1234567891011121314151617
  1. <!DOCTYPE HTML>
  2. <html dir="ltr" xml:lang="en-US" lang="en-US"><head>
  3. <meta charset="utf-8">
  4. <title>Console.clear() tests</title>
  5. <script type="text/javascript">
  6. console.log("log1");
  7. console.log("log2");
  8. console.clear();
  9. window.objFromPage = { a: 1 };
  10. </script>
  11. </head>
  12. <body>
  13. <h1 id="header">Clear Demo</h1>
  14. </body>
  15. </html>