1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00
elinks/test/tables.html
Petr Baudis 0f6d4310ad Initial commit of the HEAD branch of the ELinks CVS repository, as of
Thu Sep 15 15:57:07 CEST 2005. The previous history can be added to this
by grafting.
2005-09-15 15:58:31 +02:00

39 lines
1.0 KiB
HTML

<table border="1" bgcolor="blue" width="50%">
<caption>The rowspan in the td-tag causes the table border not to be drawn correctly</caption>
<tr>
<td bgcolor="green" rowspan="2">
<table border="1">
<tr><td>Stuff</td></tr>
<tr><td>Stuff2</td></tr>
</table>
</td>
</tr>
</table>
<table border="1" bgcolor="blue" width="50%">
<caption>This first one is to show how's it supposed to look</caption>
<tr>
<td bgcolor="green">
<table border="1">
<tr><td>Stuff</td></tr>
<tr><td>Stuff2</td></tr>
</table>
</td>
</tr>
</table>
<p style="white-space: pre">pre meditated cleanup</p>
<table border="1" bgcolor="blue" width="50%">
<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>
<tr>
<td bgcolor="green">
<table border="1">
<tr><td>Stuff</td></tr>
<table border="1">
<tr><td>Stuff2</td></tr>
</table>
</td>
</tr>
</table>
<p style="white-space: pre">pre meditated cleanup</p>