bernd.mielke%snafu.de 2eed8a9cc4 formcontrol layout regression testcases
git-svn-id: svn://10.0.0.236/trunk@116267 18797224-902f-48f8-a5cc-f745e15eee43
2002-03-09 15:07:13 +00:00

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>