mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
28 lines
451 B
HTML
28 lines
451 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
table { background: green }
|
|
col { background: red; visibility: collapse; }
|
|
td { color: white }
|
|
</style>
|
|
</head>
|
|
<body onload="runTest()">
|
|
<table>
|
|
<col id="x" span="1">
|
|
<tr>
|
|
<td>One</td>
|
|
<td>Two</td>
|
|
<td>Three</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<script>
|
|
function runTest() {
|
|
document.body.offsetWidth;
|
|
document.getElementById("x").setAttribute("span", 2);
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|