Closed
Bug 1926
Opened 26 years ago
Closed 26 years ago
Ambiguous handling of onMouseOver depending on the position: absolute setting
Categories
(Core :: DOM: Core & HTML, defect, P4)
Tracking
()
VERIFIED
FIXED
M5
People
(Reporter: johan.a.eklund, Assigned: joki)
Details
If a DIV is positioned absolutely the entire DIV (including the part of the DIV
containing no text) reacts to onMouseOver. If the position: absolute attribute
is removed, only the area of the DIV containing text responds to onMouseOver.
Updated•26 years ago
|
Assignee: vidur → joki
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
QA contact re-assigned according to the product areas we're currently working
on.
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Target Milestone: M4 → M5
Assignee | ||
Comment 4•26 years ago
|
||
Not critical for M4 at this point, moving to M5
Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 5•26 years ago
|
||
Fixed. Here's the code I used to test it.
<HTML>
<BODY>
<div onmouseover="dump('mouseover div 1\n');" onmousedown="dump('mousedown div
1\n');">
Div 1
<p>
More stuff in Div1
</div>
<div style="position: absolute; top: 100px; left: 100px"
onmouseover="dump('mouseover div 2\n');" onmousedown="dump('mousedown div
2\n');">
Div 2
<p>
More stuff in Div2
</div>
</BODY>
</HTML>
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 6•26 years ago
|
||
Build 1999-06-02-08-M7
verified fixt.
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
•