summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/test-repeated-messages.html
blob: b19c9485e059762d3d194c70e7e97f8a4ae2cf1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE HTML>
<html dir="ltr" xml:lang="en-US" lang="en-US">
  <head>
    <meta charset="utf8">
    <title>Test for bugs 720180, 800510, 865288 and 1218089</title>
    <script>
      function testConsole() {
        // same line and column number
        for(var i = 0; i < 2; i++) {
          console.log("foo repeat");
        }
        console.log("foo repeat");
        console.error("foo repeat");
      }
      function testConsoleObjects() {
        for (var i = 0; i < 3; i++) {
          var o = { id: "abba" + i };
          console.log("abba", o);
        }
      }
      function testConsoleFalsyValues(){
        [NaN, undefined, null].forEach(function(item, index){
          console.log(item);
        });
        [NaN, NaN].forEach(function(item, index){
          console.log(item);
        });
        [undefined, undefined].forEach(function(item, index){
          console.log(item);
        });
        [null, null].forEach(function(item, index){
          console.log(item);
        });
      }
    </script>
    <style>
      body {
        background-image: foobarz;
      }
      p {
        background-image: foobarz;
      }
    </style>
    <!--
    - Any copyright is dedicated to the Public Domain.
    - http://creativecommons.org/publicdomain/zero/1.0/
    -->
  </head>
  <body>
    <p>Hello world!</p>
  </body>
</html>