File: tables.html

package info (click to toggle)
elinks 0.13~20190125-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 17,244 kB
  • sloc: ansic: 102,743; sh: 5,265; python: 3,940; perl: 2,175; makefile: 970; pascal: 930; yacc: 295; lisp: 125; ruby: 70; awk: 65
file content (38 lines) | stat: -rw-r--r-- 1,041 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<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>