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

35 lines
795 B
HTML

<HTML><BODY>
This table should have cell spacing of 2px
<table border>
<TR><TD style="border: 3px inset black;">AAA</td><td>BBBB</td></tr>
<TR><TD>AAA</td><td>BBBB</td></tr>
</table>
</html>
<BR>
This table should have cell spacing of 5px
<table border cellspacing=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 spacingX of 5px, spacingY of 10px
<table border style="border-spacing: 5px 10px;">
<TR><TD>AAA</td><td>BBBB</td></tr>
<TR><TD>AAA</td><td>BBBB</td></tr>
</table>
</html>
<BR>
This table should have cell spacingX of 5px, spacingY of 10px
<table border cellspacing=0 style="border-spacing: 5px 10px;">
<TR><TD>AAA</td><td>BBBB</td></tr>
<TR><TD>AAA</td><td>BBBB</td></tr>
</table>
</html>
</body></html>