| <html> | |
| <body bgcolor=#c0c0c0> | |
| <table border=20 cellspacing=10 height=150> | |
| <tr> | |
| <td>cell content</td> | |
| </tr> | |
| </table> | |
| <p>The following two tables demostrates the bug with TD and TABLE both having height specified.</p> | |
| <table border=20 cellspacing=10 height=210> | |
| <tr> | |
| <td height=150>height=210 (150+2*10+2*20)</td> | |
| </tr> | |
| </table> | |
| <table border=20 cellspacing=10 height=211> | |
| <tr> | |
| <td height=150>height=211 (150+2*10+2*20+1)</td> | |
| </tr> | |
| </table> | |
| </body> | |
| </html> |