browser/devtools/webconsole/test/test-repeated-messages.html

branch
TOR_BUG_9701
changeset 15
b8a032363ba2
equal deleted inserted replaced
-1:000000000000 0:5e446995afb0
1 <!DOCTYPE HTML>
2 <html dir="ltr" xml:lang="en-US" lang="en-US">
3 <head>
4 <meta charset="utf8">
5 <title>Test for bugs 720180, 800510 and 865288</title>
6 <script>
7 function testConsole() {
8 console.log("foo repeat"); console.log("foo repeat");
9 console.log("foo repeat"); console.error("foo repeat");
10 }
11 function testConsoleObjects() {
12 for (var i = 0; i < 3; i++) {
13 var o = { id: "abba" + i };
14 console.log("abba", o);
15 }
16 }
17 </script>
18 <style>
19 body {
20 background-image: foobarz;
21 }
22 p {
23 background-image: foobarz;
24 }
25 </style>
26 <!--
27 - Any copyright is dedicated to the Public Domain.
28 - http://creativecommons.org/publicdomain/zero/1.0/
29 -->
30 </head>
31 <body>
32 <p>Hello world!</p>
33 </body>
34 </html>
35

mercurial