karnaze%netscape.com a14a6284c9 new regression tests, not affecting the build.
git-svn-id: svn://10.0.0.236/trunk@108524 18797224-902f-48f8-a5cc-f745e15eee43
2001-11-20 01:27:31 +00:00

38 lines
696 B
HTML

<html>
<head>
<title></title>
<script type="text/javascript">
function toggle(what) {
var adv = document.getElementById("it_guru");
var ns = 'none';
if (what.checked) {
ns= "table-row";
}
adv.style.display = ns;
}
</script></head><body >
<form action="http://localhost/">
Click me twice <input type="checkbox" onclick="toggle(this)">
<table>
<tbody>
<tr>
<td>Without the &lt;tbody&gt; tags Mozilla doesn't crash
</td>
</tr>
</tbody>
<tr id="it_guru">
<td>I disappear
</td>
</tr>
<tr>
<td>Without this row Mozilla doesn't crash
</td>
</tr>
</table>
</form>
</body>
</html>