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

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     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