mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00: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>
|