layout/base/crashtests/736389-1.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/base/crashtests/736389-1.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,47 @@
     1.4 +<html xmlns="http://www.w3.org/1999/xhtml">
     1.5 +<head>
     1.6 +<style>
     1.7 +/* this stylesheet is reduced from quirk.css */
     1.8 +
     1.9 +li {
    1.10 +  list-style-position: inside;
    1.11 +}
    1.12 +
    1.13 +.t:first-child {
    1.14 +  padding-top: 1em;
    1.15 +}
    1.16 +
    1.17 +</style>
    1.18 +
    1.19 +<script>
    1.20 +
    1.21 +function rm(n) { n.parentNode.removeChild(n); }
    1.22 +
    1.23 +window.addEventListener("load", function() {
    1.24 +  document.documentElement.offsetHeight;
    1.25 +  rm(document.getElementById('x'));
    1.26 +}, false);
    1.27 +
    1.28 +</script>
    1.29 +</head>
    1.30 +
    1.31 +<body style="-moz-column-count: 2000;">
    1.32 +  <li>
    1.33 +    <ol class="t" style="position: relative;">
    1.34 +      <span id="x"></span>
    1.35 +      <ol class="t" style="list-style-position: inside;">
    1.36 +        <div style="position: absolute;">
    1.37 +          <li>
    1.38 +            <div style="position: absolute;">
    1.39 +              <li>
    1.40 +                <ol class="t"></ol>
    1.41 +              </li>
    1.42 +            </div>
    1.43 +          </li>
    1.44 +        </div>
    1.45 +      </ol>
    1.46 +    </ol>
    1.47 +  </li>
    1.48 +</body>
    1.49 +
    1.50 +</html>

mercurial