layout/generic/crashtests/363448.html

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:8a195e116db3
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>
14
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