mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
23 lines
498 B
HTML
23 lines
498 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div.spacer {width:20px; height: 20px;}
|
|
table {background-color: lime;}
|
|
td {background-color: green;}
|
|
</style>
|
|
<script>
|
|
function testIt() {
|
|
document.body.offsetWidth;
|
|
var table = document.getElementsByTagName("TABLE")[0];
|
|
table.setAttribute("cellpadding", "30px");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="testIt();">
|
|
<table><tr>
|
|
<td> <div class="spacer"></div> </td></tr>
|
|
</table>
|
|
</body>
|
|
</html>
|