mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
26 lines
283 B
HTML
26 lines
283 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
ul {
|
||
|
margin: 4px;
|
||
|
}
|
||
|
li {
|
||
|
float: left;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<ul>
|
||
|
<li>Test</li>
|
||
|
<li><script>var b=document.body.offsetHeight</script>Test</li>
|
||
|
</ul>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|