karnaze%netscape.com f9c6ef5e22 new regression tests
git-svn-id: svn://10.0.0.236/trunk@32016 18797224-902f-48f8-a5cc-f745e15eee43
1999-05-18 02:46:51 +00:00

40 lines
1.1 KiB
HTML

<HTML><BODY>
This table should have cell padding of 5px
<table border cellpadding=5>
<TR><TD>AAA</td><td>BBBB</td></tr>
<TR><TD>AAA</td><td>BBBB</td></tr>
</table>
</html>
<BR>
This table should have cell padding of 5px
<table border>
<TR><TD style="padding:5px;">AAA</td><td style="padding:5px;">BBBB</td></tr>
<TR><TD style="padding:5px;">AAA</td><td style="padding:5px;">BBBB</td></tr>
</table>
</html>
<BR>
This table should have cell padding of 5px
<table border cellpadding=0>
<TR><TD style="padding:5px;">AAA</td><td style="padding:5px;">BBBB</td></tr>
<TR><TD style="padding:5px;">AAA</td><td style="padding:5px;">BBBB</td></tr>
</table>
</html>
<BR>
This table should have cell padding of 5px except the 1st cell's left padding will be 0
<table border cellpadding=5>
<TR><TD style="padding-left:0px;">AAA</td><td>BBBB</td></tr>
<TR><TD >AAA</td><td>BBBB</td></tr>
</table>
<BR>
This table should have cell padding of 5px except the last cell's left padding will be 30
<table border cellpadding=5>
<TR><TD>AAA</td><td>BBBB</td></tr>
<TR><TD >AAA</td><td style="padding-left:30px;">BBBB</td></tr>
</table>
</body></html>