deflate is broken.
[elinks.git] / test / tables.html
blobb9e1a576c58ee1007292c96cb2fcc2efcbd24799
1 <table border="1" bgcolor="blue" width="50%">
2 <caption>The rowspan in the td-tag causes the table border not to be drawn correctly</caption>
3 <tr>
4 <td bgcolor="green" rowspan="2">
5 <table border="1">
6 <tr><td>Stuff</td></tr>
7 <tr><td>Stuff2</td></tr>
8 </table>
9 </td>
10 </tr>
11 </table>
13 <table border="1" bgcolor="blue" width="50%">
14 <caption>This first one is to show how's it supposed to look</caption>
15 <tr>
16 <td bgcolor="green">
17 <table border="1">
18 <tr><td>Stuff</td></tr>
19 <tr><td>Stuff2</td></tr>
20 </table>
21 </td>
22 </tr>
23 </table>
24 <p style="white-space: pre">pre meditated cleanup</p>
26 <table border="1" bgcolor="blue" width="50%">
27 <caption>This second one shows that the bad table tag causes the following text to be inside the table. Could be the braindeadness of skip_table()</caption>
28 <tr>
29 <td bgcolor="green">
30 <table border="1">
31 <tr><td>Stuff</td></tr>
32 <table border="1">
33 <tr><td>Stuff2</td></tr>
34 </table>
35 </td>
36 </tr>
37 </table>
38 <p style="white-space: pre">pre meditated cleanup</p>