Closed
Bug 1852
Opened 26 years ago
Closed 25 years ago
style.top and family not being redrawn after changes
Categories
(Core :: DOM: Core & HTML, defect, P2)
Tracking
()
VERIFIED
FIXED
M6
People
(Reporter: jeremie, Assigned: peterl-retired)
References
()
Details
After initial document layout, the positioning properties are not being redrawn
after they have been changed via the DOM. Example code:
<HTML>
<BODY>
<SPAN ID="test"
STYLE="background:blue;color:white;position:absolute;top:10px;left:10px;width:50
px;height:100px;">test</SPAN>
<SCRIPT>
document.getElementById('test').style.top = '100px';show();
window.setTimeout("document.getElementById('test').style.top = '200px';show
();",20);
function show()
{
e = document.getElementById("test");
alert("Top: " + e.style.top);
alert("Left: " + e.style.left);
alert("Height: " + e.style.height);
alert("Width: " + e.style.width);
}
</SCRIPT>
</BODY>
</HTML>
Updated•26 years ago
|
Assignee: vidur → peterl
Comment 3•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
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Target Milestone: M4 → M6
Assignee | ||
Comment 4•26 years ago
|
||
Still a repaint issue
Assignee | ||
Updated•25 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 6•25 years ago
|
||
Verified fixed on:
Mac 1999-06-01-19-M6
WinNT4 1999-06-01-09-M7
Linux6 1999-06-01-12-M7
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•