bzbarsky%mit.edu 3d9780d2f6 Fix bug 404666 by making spanned colframes be continuations of the col that
spans them.  r=bernd, sr=roc, a=schrep


git-svn-id: svn://10.0.0.236/trunk@240284 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-03 07:45:07 +00:00

27 lines
411 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table {background-color:green}
col {background-color:red}
td { color: white }
</style>
<script>
function runTest()
{
document.body.offsetHeight;
document.getElementById("col").style.visibility = "collapse";
}
</script>
</head>
<body onload="runTest()">
<table>
<col id="col" span="2">
<tr>
<td>One</td>
<td>Two</td>
<td>Three</td>
</tr>
</table>
</html>