Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / other / cellspacing.html
bloba1830ed1b833ec767c79120e85afc1efaf865338
1 <HTML><BODY>
2 This table should have cell spacing of 2px
3 <table border>
4 <TR><TD style="border: 3px inset black;">AAA</td><td>BBBB</td></tr>
5 <TR><TD>AAA</td><td>BBBB</td></tr>
6 </table>
7 </html>
8 <BR>
10 This table should have cell spacing of 5px
11 <table border cellspacing=5>
12 <TR><TD>AAA</td><td>BBBB</td></tr>
13 <TR><TD>AAA</td><td>BBBB</td></tr>
14 </table>
15 </html>
17 <BR>
18 This table should have cell spacingX of 5px, spacingY of 10px
19 <table border style="border-spacing: 5px 10px;">
20 <TR><TD>AAA</td><td>BBBB</td></tr>
21 <TR><TD>AAA</td><td>BBBB</td></tr>
22 </table>
23 </html>
25 <BR>
26 This table should have cell spacingX of 5px, spacingY of 10px
27 <table border cellspacing=0 style="border-spacing: 5px 10px;">
28 <TR><TD>AAA</td><td>BBBB</td></tr>
29 <TR><TD>AAA</td><td>BBBB</td></tr>
30 </table>
31 </html>
33 </body></html>