mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 09:20:15 +01:00
25 lines
306 B
HTML
25 lines
306 B
HTML
|
<html>
|
||
|
<body>
|
||
|
|
||
|
<table border=1>
|
||
|
<tr>
|
||
|
<td>Test</td>
|
||
|
<td rowspan=3>Test</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<span>This cell should be visible
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td>This table should be visible</td>
|
||
|
</tr>
|
||
|
<input type="hidden">
|
||
|
</table>
|
||
|
</span>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
</body>
|
||
|
</html>
|