mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
32 lines
663 B
HTML
32 lines
663 B
HTML
|
<html>
|
||
|
<head></head>
|
||
|
<body>
|
||
|
<form>
|
||
|
<table border="1">
|
||
|
<tr>
|
||
|
<input type="hidden"><!-- these fields are breaking the table -->
|
||
|
<td rowspan="2">5</td>
|
||
|
<td rowspan="2">**</td>
|
||
|
<td>Text text text</td>
|
||
|
<td> </td>
|
||
|
<td>1970</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="4">No Holdings Available</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<input type="hidden"><!-- these fields are breaking the table -->
|
||
|
<td rowspan="2">6</td>
|
||
|
<td rowspan="2">**</td>
|
||
|
<td>Text text text</td>
|
||
|
<td> </td>
|
||
|
<td>1970</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td colspan="4">No Holdings Available</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|