new regression tests, not affecting the build.

git-svn-id: svn://10.0.0.236/trunk@73766 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
karnaze%netscape.com
2000-07-06 14:07:15 +00:00
parent e3d69b4f52
commit 10de8f5166
2 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<script>
function toggle( ID ){
target= document.getElementById(ID);
if (target.style.visibility == "collapse"){
target.style.visibility = "visible";
}
else{
target.style.visibility="collapse";
}
}
</script>
<table border=1>
<tr><td>
<input type="button" value="Click" onClick="toggle('row')">
<table border=1>
<tr id="row"><td>Hello
</table>
</table>

View File

@@ -0,0 +1,17 @@
<TABLE style="border: 1px solid black" WIDTH="100%">
<TR>
<TD>foo foo foo foo</TD>
<TD width=40>
<TABLE style="border: 1px solid red" WIDTH="100%" CELLSPACING="0" CELLPADDING="3">
<TR>
<TD width=45%>
Your First Name
</TD>
<TD>
<INPUT TYPE=TEXT NAME="1" SIZE="15" MAXLENGTH="30" VALUE="">&nbsp;<BR></FONT>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>