layout/tables/crashtests/460637-2.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/tables/crashtests/460637-2.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,24 @@
     1.4 +<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
     1.5 +<head><script type="text/javascript">
     1.6 +<![CDATA[
     1.7 +
     1.8 +  function boom() {
     1.9 +    var tr = document.getElementById('tr');
    1.10 +    th = document.createElementNS("http://www.w3.org/1999/xhtml", 'th');
    1.11 +    th.setAttribute('rowspan', 9);
    1.12 +    tr.appendChild(th);
    1.13 +    document.documentElement.removeAttribute("class");
    1.14 +  }
    1.15 +
    1.16 +
    1.17 +  function ol(e) {
    1.18 +    window.removeEventListener("load", ol, false);
    1.19 +    setTimeout(boom, 400);
    1.20 +  }
    1.21 +  
    1.22 +  window.addEventListener("load", ol, false);
    1.23 +
    1.24 +]]></script>
    1.25 +</head>
    1.26 +<body><table style="border-collapse: collapse;"><tbody><tr id="tr"></tr></tbody></table></body>
    1.27 +</html>

mercurial