bzbarsky%mit.edu 60609224ad Adding test.
git-svn-id: svn://10.0.0.236/trunk@239654 18797224-902f-48f8-a5cc-f745e15eee43
2007-11-19 15:29:15 +00:00

28 lines
430 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table { background: white }
col { background: green }
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>