mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
21 lines
443 B
HTML
21 lines
443 B
HTML
<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>
|