layout/generic/crashtests/363448.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>
     3 <title>Testcase bug 363448 - Crash [@ nsCachedStyleData::GetStyleData] with testcase, using floating and absolutely positioned iframes</title>
     4 </head>
     5 <body>
     6 This page should not crash Mozilla
     7 <div style="width:300px;">
     8   <span id="b">
     9     <iframe style="float: left;" id="a"></iframe>
    10     <wbr>text
    11     <iframe id="c" style="position: absolute;"></iframe>
    12   </span>
    13 </div>
    15 <script>
    16 function stirdom(){
    17   document.body.appendChild(document.getElementById('a'));
    18   document.getElementById('b').appendChild(document.getElementById('c'));
    19 }
    20 setTimeout(stirdom,200);
    21 </script>
    22 </body>
    23 </html>

mercurial