mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 09:20:15 +01:00
34 lines
447 B
HTML
34 lines
447 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>testcase</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
|
||
|
<form method=get action="search">
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<p>form outside table</p>
|
||
|
<input type="text" value="text in here">
|
||
|
<input type="submit">
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|
||
|
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<p>form nested inside table cell with the form controls</p>
|
||
|
<form method=get action="search">
|
||
|
<input type="text" value="text in here">
|
||
|
<input type="submit">
|
||
|
</form>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
</body>
|
||
|
</html>
|