Closed
Bug 136527
Opened 23 years ago
Closed 20 years ago
IFRAME covered by DIV causes mouseouts on DIV
Categories
(Core :: DOM: Events, defect, P2)
Tracking
()
RESOLVED
FIXED
People
(Reporter: bc, Assigned: saari)
References
()
Details
(Keywords: testcase, topembed-)
Attachments
(1 file)
|
615 bytes,
text/html
|
Details |
Steps to reproduce:
1. load url
2. mouseover menu which overlaps the iframe containing the ad
3. move mouse until it is over portion of menu overlapping the iframe
Expected result:
menu does not close
Actual result:
menu closes
To see that the menu actually works when there is no iframe, visit
http://www.bayarea.com/mld/bayarea/.
| Reporter | ||
Comment 1•23 years ago
|
||
This test case contains an iframe obscured by an absolutely positioned div.
Move the mouse over the DIV and see the mouseout fire whenever you move over
the iframe.
| Reporter | ||
Comment 2•23 years ago
|
||
Nominating for nsbeta1,topembed since this will cause problems on any page which
uses dhtml menus which overlap iframes.
| Reporter | ||
Comment 3•23 years ago
|
||
this occured in trunk build 2002 04 08 03/win2k
Comment 5•23 years ago
|
||
See discussion in bug 123700; apparently the fact that the iframe is a native
window makes us get an OS-level mouseout event when we move over an iframe....
*** Bug 164778 has been marked as a duplicate of this bug. ***
Comment 7•23 years ago
|
||
I'm curious as to where this bug is going? We see the same issues and have had
to implement functionality changes to work around it.
Updated•23 years ago
|
Keywords: mozilla1.2
This bug does appear to be the same as bug 125386. It seems to be effecting any
scrollable element.
Updated•22 years ago
|
Priority: -- → P2
Updated•22 years ago
|
Keywords: mozilla1.2 → mozilla1.3
Comment 9•22 years ago
|
||
I worked around the problem by doing something like
li-object.onmouseout = function (e) {
var tmp = e.originalTarget.nodeName;
// js-code to hide div
}
I have no idea why that makes a difference, tmp is never used again...
The complete js can be found at http://test.studenternet.auc.dk/scripts/cssjsmenu.js
Comment 11•22 years ago
|
||
*** Bug 214098 has been marked as a duplicate of this bug. ***
Comment 13•22 years ago
|
||
I tried to use the workaround Joakim Recht described, but without any results. I
find it strange that this bug is over a year old, and still no progress is in
sight; I think that the moz developers should redirect their attention from
creating new features to fixing bugs!
Updated•22 years ago
|
Keywords: mozilla1.3
Comment 14•21 years ago
|
||
*** Bug 243843 has been marked as a duplicate of this bug. ***
Comment 15•21 years ago
|
||
*** Bug 208107 has been marked as a duplicate of this bug. ***
Comment 16•20 years ago
|
||
See the below URL for example and (cross browser) explanation:
http://www.hiermenuscentral.com/issues/safiframe/iframeover.html
Comment 17•20 years ago
|
||
This works fine now that 125386 has been fixed, can anyone verify? Using trunk
build 20050224.
Comment 18•20 years ago
|
||
with trunk FF 20050225, attached testcase works as expected. Behaviour on
testcase of comment 16 has changed but is still not correct.
Please file a new bug with a new reduced testcase and explanation if there are
remaining issues.
Status: NEW → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•