layout/generic/crashtests/397187-1.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/generic/crashtests/397187-1.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,32 @@
     1.4 +<html class="reftest-wait">
     1.5 +<head>
     1.6 +<style type="text/css">
     1.7 +
     1.8 +.a:first-letter { float: right; }
     1.9 +
    1.10 +</style>
    1.11 +<script type="text/javascript">
    1.12 +
    1.13 +function boom()
    1.14 +{
    1.15 +  document.body.style.overflow = "auto";
    1.16 +  document.body.className = "a";
    1.17 +  
    1.18 +  setTimeout(boom2, 30);
    1.19 +}
    1.20 +
    1.21 +function boom2()
    1.22 +{
    1.23 +  var span = document.createElement("span");
    1.24 +  document.body.appendChild(span);
    1.25 +  
    1.26 +  document.documentElement.removeAttribute("class");
    1.27 +}
    1.28 +
    1.29 +</script>
    1.30 +</head>
    1.31 +
    1.32 +<body onload="boom();">&#65207;
    1.33 +</body>
    1.34 +
    1.35 +</html>

mercurial