Closed
Bug 190010
Opened 23 years ago
Closed 23 years ago
the OnClick event (left button) is bad interpreted ("onMouseOut") when it's aplied to a "<div>" tag.
Categories
(Core :: DOM: UI Events & Focus Handling, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 102578
People
(Reporter: iban, Assigned: saari)
References
()
Details
User-Agent: Mozilla/5.0 (Windows; U; Win98; ca; rv:1.2.1) Gecko/20021130
Build Identifier: Mozilla/5.0 (Windows; U; Win98; ca; rv:1.2.1) Gecko/20021130
(sorry for my bad english...)
in the page: http://www.dimonisdevinaros.org/?s=menu exist the system layers
menu. This layers contain the events: onMouseOver and onMouseOut for "hidden"
and "vissible" this menu's. If I click the links contained on the layers, the
click event is bad interpreted. The result execute onMouseOut javascript event
included in <div> tag:
<div onMouseOut="visibleDiv('sec1','hidden');"
onMouseOver="visibleDiv('sec1','visible');"><a href="?s=Hello">World</a></div>
on:
function visibleDiv(a,mod) {
document.getElementById(a).style.visibility=mod;
}
Result: the click of this link force the hidding layer...
this error takes place in Linux and not in Windows.
Reproducible: Always
Steps to Reproduce:
1. position cursor on the graphic links on the menu
2. moves the mouse towards menu unfolded
3. click on links
Actual Results:
hidden menu
Expected Results:
open new page
| Reporter | ||
Comment 1•23 years ago
|
||
Sorry, the information error is for Mozilla/5.0 (X11; U; Linux i686; es-AR;
rv:1.1) Gecko/20020826 and forwards
Comment 2•23 years ago
|
||
worksforme, linux trunk build 2003-01-18-22. Please do not test events with
1.2.1 -- they were rewritten since. Test a current build.
Comment 3•23 years ago
|
||
dupe of "clicking wrongfully fires onmouseout (linux specific bug)"
*** This bug has been marked as a duplicate of 102578 ***
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Resolution: --- → DUPLICATE
Updated•7 years ago
|
Component: Event Handling → User events and focus handling
You need to log in
before you can comment on or make changes to this bug.
Description
•