mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
527 B
HTML
31 lines
527 B
HTML
|
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
|
||
|
|
||
|
<head>
|
||
|
<script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var table = document.getElementById('table');
|
||
|
|
||
|
var newTR = document.createElement('tr');
|
||
|
var newTD = document.createElement('td');
|
||
|
newTR.appendChild(newTD);
|
||
|
table.appendChild(newTR);
|
||
|
|
||
|
newTD.setAttribute('rowspan', 3);
|
||
|
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
|
||
|
<body onload="setTimeout(boom, 30);">
|
||
|
|
||
|
<table id="table"><tr><td></td><td></td></tr></table>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|