mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
234 B
HTML
15 lines
234 B
HTML
<html>
|
|
<body>
|
|
<table width="100" border="4">
|
|
<tr>
|
|
<td width="200" id="td">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<script>
|
|
document.body.offsetWidth;
|
|
document.getElementById("td").setAttribute("nowrap", "nowrap");
|
|
</script>
|
|
</body>
|
|
</html>
|