Closed
Bug 157877
Opened 22 years ago
Closed 22 years ago
OnMouseOut event doesn't work
Categories
(Core :: DOM: Events, defect)
Tracking
()
VERIFIED
DUPLICATE
of bug 130620
People
(Reporter: riku.peltokorpi, Assigned: joki)
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.0) Gecko/20020530
BuildID: 2002053012
In a HTML tables where there is defined onMouseOver and onMouseOut events
Mozilla occasionally ignores the onMouseOut event.
Reproducible: Sometimes
Steps to Reproduce:
1.Make a HTML table with following tag:
<tr onMouseOver="javascript:style.background='green'; return true;"
onMouseOut="javscript:style.background='white'">
2.View the table in the browser
3.Move the mouse pointer over the table
Actual Results: The focused row turns from white to green but is left green in
spite of the onMouseOut event which should turn it back to white.
Expected Results: The defined onMouseOut event should change the row color back
to white.
<table border=1 cellpadding=3 cellspacing=0>
<tr onMouseOver="javascript:style.background='green'; return true;"
onMouseOut="javascript:style.background='white'">
<td>foo</td>
<td>bar</td>
</tr>
</table>
*** This bug has been marked as a duplicate of 130620 ***
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•