layout/generic/crashtests/408883-1.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 <html>
     2 <head>
     4 <style type="text/css">
     6 body {
     7   -moz-column-count: 2;
     8   -moz-column-width: 100px;
     9   height: 200px;
    10   width: 400px;
    11 }
    12 .b {
    13   height: 300px;
    14 }
    15 .f {
    16   float: left;
    17 }
    18 .p {
    19   padding: 0pt 200px;
    20 }
    22 </style>
    24 <script type="text/javascript">
    26 function boom()
    27 {
    28   var newDiv = document.createElementNS("http://www.w3.org/1999/xhtml", "div");
    29   var a = document.getElementById("a");
    30   a.appendChild(newDiv);
    31 }
    33 </script>
    35 </head>
    37 <body onload="boom();"><div class="f"><span class="p"></span></div><div id="a"><div class="b f"><input></div></div></body>
    39 </html>

mercurial