1<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2<head><script type="text/javascript">
3<![CDATA[
4
5  function boom() {
6    var tr = document.getElementById('tr');
7    th = document.createElementNS("http://www.w3.org/1999/xhtml", 'th');
8    th.setAttribute('rowspan', 9);
9    tr.appendChild(th);
10    document.documentElement.removeAttribute("class");
11  }
12
13
14  function ol(e) {
15    window.removeEventListener("load", ol);
16    setTimeout(boom, 400);
17  }
18
19  window.addEventListener("load", ol);
20
21]]></script>
22</head>
23<body><table style="border-collapse: collapse;"><tbody><tr id="tr"></tr></tbody></table></body>
24</html>
25