Defect with the position of Autocomplete box in frames

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

When a frame document is used with an embedded form. The
auto complete selections appear to get misplaces on the
screen. The same page viewed in IE 5.5 looks ok but in
6.0 SP1 they are incorrect.

In our cases the frame had about a 1 inch border at the
top and then an embedded form document. The pulldowns are
then positioned a further 1 inch below the input field.

What I could not find is any place to raise the possible
defect.

Paul
 
Example

I made it as simple as possible so anyone could be sure
there is nothing suspect. If you enter text in the input
and press return then start to enter text again (while
autocomplete is on) then the autocomplete box is displaced
well below the input box in IE 6.0 (but not in IE 5.5)

I'd love to uninstall 6.0 and go back to 5.5 but the
instructions given on this site just did not match my
system at all. I could not figure out how to uninstall it.

Paul


-- frames.html --
<table width="100%" height="100%" border=1>
<tr height=10%>
<td>TOP/LEFT</td>
<td>TOP</td>
</tr>
<tr>
<td>LEFT</td>
<td>
<IFRAME frameborder=0 width="100%" height="100%"
SRC="form.html">Frames required</IFRAME>
</td>
</tr>
</table>
---
-- Form.html --
<FORM>
Text: <INPUT TYPE=text NAME="Text">
</FORM>
---
 
Back
Top