https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 958e6d9bcc78482a0774e941bfb1253ef628364b authored by seabld on 15 June 2012, 11:54:31 UTC
Added tag SEAMONKEY_2_10_1_RELEASE for changeset FIREFOX_13_0_1_BUILD1. CLOSED TREE a=release
Tip revision: 958e6d9
403249-1b.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="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>
back to top