test-console-extras.html 474 B

12345678910111213141516171819
  1. <!DOCTYPE HTML>
  2. <html dir="ltr" xml:lang="en-US" lang="en-US"><head>
  3. <meta charset="utf-8">
  4. <title>Console extended API test</title>
  5. <script type="text/javascript">
  6. function test() {
  7. console.log("start");
  8. console.clear();
  9. console.log("end");
  10. }
  11. </script>
  12. </head>
  13. <body>
  14. <h1 id="header">Heads Up Display Demo</h1>
  15. <button onclick="test();">Test Extended API</button>
  16. <div id="myDiv"></div>
  17. </body>
  18. </html>