mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
35 lines
510 B
HTML
35 lines
510 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
function boom()
|
|
{
|
|
var tbody = document.getElementById("tbody");
|
|
var table = tbody.parentNode;
|
|
table.removeChild(tbody);
|
|
document.documentElement.offsetHeight;
|
|
table.appendChild(tbody);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
|
|
<table>
|
|
<col>
|
|
<col style="visibility: collapse;"><col>
|
|
<tbody id="tbody">
|
|
<tr>
|
|
<td>one</td>
|
|
<td>two</td>
|
|
</tr>
|
|
<tr>
|
|
<td>one</td>
|
|
<td>two</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|