layout/generic/crashtests/368752.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/generic/crashtests/368752.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,20 @@
     1.4 +<html class="reftest-wait"><head>
     1.5 +<title>Testcase bug - Crash [@ nsIFrame::Invalidate] with display: inherit, large margin and padding and generated content</title>
     1.6 +<script>
     1.7 +function addstyle(){
     1.8 +var x=document.createElementNS('http://www.w3.org/1999/xhtml','style');
     1.9 +x.innerHTML='body::before {content: "text"; }';
    1.10 +document.documentElement.appendChild(x);
    1.11 +document.documentElement.offsetHeight;
    1.12 +document.documentElement.removeAttribute("class");
    1.13 +}
    1.14 +</script>
    1.15 +
    1.16 +</head>
    1.17 +<body onload="setTimeout(addstyle,0);">
    1.18 +<div style="display: table;">
    1.19 +<div style="display: inherit;float: left;margin-bottom: -9999999px;padding-top: 9999999999px;">
    1.20 +<span style="position: fixed;">t</span>
    1.21 +</div>
    1.22 +</div>
    1.23 +</body></html>

mercurial