mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
34 lines
544 B
HTML
34 lines
544 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
document.getElementById("hr").removeAttribute("width");
|
||
|
|
||
|
document.documentElement.offsetHeight;
|
||
|
|
||
|
var newTR = document.createElement("tr");
|
||
|
document.getElementById("table").appendChild(newTR);
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom()">
|
||
|
|
||
|
<table id="table">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<div><hr width="7000" id="hr"></div>
|
||
|
<div style="-moz-column-width: 100px;">x<li></li></div>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
</body>
|
||
|
</html>
|