haikuwebkit/LayoutTests/tables/mozilla/other/cellspacing.html

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>