blob: bd6b070a3e7a7a15bdb567c19987dabbb094332e [file] [log] [blame]
<html>
<HEAD>
<SCRIPT>
function doIt() {
var textarea = document.getElementsByTagName("TEXTAREA")[0];
textarea.value = "bar";
}
</SCRIPT>
<BODY BGCOLOR=#FFFFFF onload="doIt()">
The bug causes the nested table containing the textarea to be positioned away from the left edge of the outer table<BR>
<TABLE WIDTH=300 BORDER=1 ALIGN=CENTER>
<TR>
<TD WIDTH=150>
<TABLE border=1>
<FORM>
<TR>
<TD>
<TEXTAREA row=2 cols=5>foo</TEXTAREA>
</TD>
</TR>
</FORM>
</TABLE>
</TD>
</TR>
</TABLE>
</body>
</html>