summaryrefslogtreecommitdiffstats
path: root/layout/tables/crashtests/460637-2.xhtml
blob: 23f39595079f9c129271b8358ec2fcb8de353ab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
<head><script type="text/javascript">
<![CDATA[

  function boom() {
    var tr = document.getElementById('tr');
    th = document.createElementNS("http://www.w3.org/1999/xhtml", 'th');
    th.setAttribute('rowspan', 9);
    tr.appendChild(th);
    document.documentElement.removeAttribute("class");
  }


  function ol(e) {
    window.removeEventListener("load", ol);
    setTimeout(boom, 400);
  }
  
  window.addEventListener("load", ol);

]]></script>
</head>
<body><table style="border-collapse: collapse;"><tbody><tr id="tr"></tr></tbody></table></body>
</html>