layout/generic/crashtests/363448.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/generic/crashtests/363448.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,23 @@
     1.4 +<html>
     1.5 +<head>
     1.6 +<title>Testcase bug 363448 - Crash [@ nsCachedStyleData::GetStyleData] with testcase, using floating and absolutely positioned iframes</title>
     1.7 +</head>
     1.8 +<body>
     1.9 +This page should not crash Mozilla
    1.10 +<div style="width:300px;">
    1.11 +  <span id="b">
    1.12 +    <iframe style="float: left;" id="a"></iframe>
    1.13 +    <wbr>text
    1.14 +    <iframe id="c" style="position: absolute;"></iframe>
    1.15 +  </span>
    1.16 +</div>
    1.17 +
    1.18 +<script>
    1.19 +function stirdom(){
    1.20 +  document.body.appendChild(document.getElementById('a'));
    1.21 +  document.getElementById('b').appendChild(document.getElementById('c'));
    1.22 +}
    1.23 +setTimeout(stirdom,200);
    1.24 +</script>
    1.25 +</body>
    1.26 +</html>
    1.27 \ No newline at end of file

mercurial