bzbarsky%mit.edu fa2a4c1412 Adding tests
git-svn-id: svn://10.0.0.236/trunk@240286 18797224-902f-48f8-a5cc-f745e15eee43
2007-12-03 08:04:12 +00:00

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>