bzbarsky%mit.edu 17b3344ce1 Adding more regression tests.
git-svn-id: svn://10.0.0.236/trunk@195576 18797224-902f-48f8-a5cc-f745e15eee43
2006-04-27 17:59:14 +00:00

51 lines
2.3 KiB
HTML

<HTML>
<BODY>
<FORM>
This is the way all the tables below should be laid out... <br>
<TABLE border="1" width="400">
<TR>
<TD style="width:80%">
&nbsp;
</TD>
<TD style="width:20%">
&nbsp;
</TD>
</TR>
</TABLE>
<BR>
<BR>
This is the same table, only it has an input box with width = 100% in the right-most cell<BR>
Note that the width of the input box is not constrained by its container, as it should be<BR>
<TABLE border="1" width="400">
<TR>
<TD style="width:80%">
&nbsp;
</TD>
<TD style="width:20%">
<INPUT type="text" style="width: 100%">
</TD>
</TR>
</TABLE>
<BR>
<BR>
This is the same table, only it has an input box with width = auto in the right-most cell<BR>
Note that we get the same result as above.<BR>
<TABLE border="1" width="400">
<TR>
<TD style="width:80%">
&nbsp;
</TD>
<TD style="width:20%">
<INPUT type="text" style="width: auto">
</TD>
</TR>
</TABLE>
</FORM>
</BODY>
</HTML>