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

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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>

mercurial