summaryrefslogtreecommitdiff
path: root/browser/devtools/webconsole/test/test-console.html
blob: 23126642a1b6b8e9145451d6f0d2ab2740072a49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML>
<html dir="ltr" xml:lang="en-US" lang="en-US"><head>
    <meta charset="utf-8">
    <title>Console test</title>
    <script type="text/javascript">
      function test() {
        var str = "Dolske Digs Bacon, Now and Forevermore."
        for (var i=0; i < 5; i++) {
          console.log(str);
        } 
      }
      console.info("INLINE SCRIPT:");
      test();
      console.warn("I'm warning you, he will eat up all yr bacon.");
      console.error("Error Message");
    </script>
  </head>
  <body>
    <h1 id="header">Heads Up Display Demo</h1>
    <button onclick="test();">Log stuff about Dolske</button>
    <div id="myDiv"></div>
  </body>
</html>