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:
21
mozilla/layout/html/tests/table/interactive/bug40721.html
Normal file
21
mozilla/layout/html/tests/table/interactive/bug40721.html
Normal 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>
|
||||
17
mozilla/layout/html/tests/table/interactive/bug43732.html
Normal file
17
mozilla/layout/html/tests/table/interactive/bug43732.html
Normal 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=""> <BR></FONT>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
Reference in New Issue
Block a user