Bug 404309, r=bernd, sr=dbaron, a=beltzner git-svn-id: svn://10.0.0.236/trunk@245760 18797224-902f-48f8-a5cc-f745e15eee43
28 lines
440 B
HTML
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>
|