bzbarsky%mit.edu 86cf4eb658 Make sure that changes to the "span" attribute on a colgroup actually work.
Bug 404309, r=bernd, sr=dbaron, a=beltzner


git-svn-id: svn://10.0.0.236/trunk@245760 18797224-902f-48f8-a5cc-f745e15eee43
2008-02-15 04:19:29 +00:00

28 lines
440 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table { background: white }
colgroup { background: green }
td { color: white }
</style>
</head>
<body onload="runTest()">
<table>
<colgroup id="x" span="3">
<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>