mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
0f6d4310ad
Thu Sep 15 15:57:07 CEST 2005. The previous history can be added to this by grafting.
39 lines
1.0 KiB
HTML
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>
|