layout/generic/crashtests/406902-1.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>
     3 <head>
     5 <style type="text/css">
     7     .container {
     8       position: relative;
     9     }
    10     #colset {
    11       -moz-column-count: 3;
    12       -moz-column-gap: 0;
    13       border: silver 2pt;
    14       border-style: none solid;
    15     }
    16     .b1 {
    17       position: absolute;
    18       height: 336pt;
    19       margin-left: 20pt;
    20     }
    21     .b2 {
    22       position: absolute;
    23       height: 192pt;
    24       width: 25pt;
    25       margin-left: 50pt;
    26     }
    28 </style>
    30 <script type="text/javascript">
    32 function boom()
    33 {
    34   newDiv = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
    35   newDiv.setAttribute("class", "b1");
    36   document.getElementById("f").appendChild(newDiv);
    37 }
    39 </script>
    40 </head>
    42 <body onload="boom();">
    44 <div id="colset"><div class="container"><div class="b2"></div><div id="f"></div></div></div>
    46 </body>
    47 </html>

mercurial