Files
Mozilla/mozilla/layout/html/tests/formctls/bugs/bug58299.html
(no author) d368a405db This commit was manufactured by cvs2svn to create branch
'MOZILLA_1_8_0_BRANCH'.

git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_0_BRANCH@185757 18797224-902f-48f8-a5cc-f745e15eee43
2005-12-07 05:54:01 +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>