blob: 6ff2bc3f496e781b90834c2959cbed3acdf6d66a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html class="reftest-wait">
<head>
<script>
function boom() {
var newNode = document.createElementNS("http://www.w3.org/1999/xhtml", 'table');
document.getElementById('td').appendChild(newNode);
document.getElementById('table2').setAttribute('align', 'right');
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom,30)">
<table id="table2"><tr><td id="td"></table>
</body>
</html>
|