author | vladimir@pobox.com |
Tue, 18 Mar 2008 13:30:16 -0700 | |
changeset 13263 | 601ea65a1056a0594fb2514e6c8387d2794c99f1 |
parent 9274 | e0690f052ae7376473d491dfe49f2fd2dbf65f18 |
permissions | -rw-r--r-- |
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <script> function boom() { document.getElementById('A').setAttribute('colspan', 0); document.getElementById('B').setAttribute('rowspan', 3); } </script> </head> <body onload="boom();"> <table> <tr> <td id="A">TD</td> <td id="B" colspan="3">TD</td> </tr> </table> </body> </html>