Closed
Bug 2850
Opened 26 years ago
Closed 26 years ago
reszing can cause form controls to appear offset from correct position
Categories
(Core :: DOM: Core & HTML, defect, P2)
Tracking
()
M6
People
(Reporter: michaelp, Assigned: pollmann)
References
()
Details
load demo 5
scroll down so that the form elements are visible.
begin resizing the window both horizontally and vertically to force a full
reflow and watch where the widgets wind up. occasionally they will appear
slightly offset from where they really should be. it's easier to see with
visual debugging turned on.
i marked this as pc/nt, but i suspect that this is an xp problem.
let me know if you have trouble reproducing.
Comment 2•26 years ago
|
||
per leger, assigning QA contacts to all open bugs without QA contacts according
to list at http://bugzilla.mozilla.org/describecomponents.cgi?product=Browser
Updated•26 years ago
|
QA Contact: 4110 → 4137
Comment 3•26 years ago
|
||
Reassigning qa contact to cpratt@netscape.com
Assignee | ||
Comment 4•26 years ago
|
||
Marking M5
Assignee | ||
Updated•26 years ago
|
Assignee | ||
Comment 5•26 years ago
|
||
Here's a reduced test case:
<html>
<body>
<table height=100%>
<tr><td>Scroll down.</td></tr>
</table>
<form>
<input type=text>
</form>
Enlarge the window horizontally.
</body>
</html>
The table's just here as a spacer. The amount that the form elements are offset
is equal to the amount that you have scrolled down.
i.e. If you are at the top of the page and reflow, there is no offset. If you
scroll down half a line and reflow, the input will jump up one half line....
Looks like we're subtracting the scroll offset twice when computing the vertical
offset to position our widgets within the view...
Assignee | ||
Updated•26 years ago
|
Target Milestone: M5 → M6
Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → DUPLICATE
Updated•6 years ago
|
Component: HTML: Form Submission → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•