WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
UNCONFIRMED
Bug 35246
mouseout and mouseover events with relatedTarget == null should be sent when exiting/entering the browser
https://bugs.webkit.org/show_bug.cgi?id=35246
Summary
mouseout and mouseover events with relatedTarget == null should be sent when ...
Grant Gayed
Reported
2010-02-22 10:08:29 PST
- observed with WebKitGTK 1.1.21 - view the page at the bottom with GtkLauncher - move the mouse into and out of the browser control -> the first time the mouse enters a mouseover is received with relatedTarget == null, which is correct -> however from this point onwards there are no more mouseover and mouseout events received with relatedTarget == null when moving the mouse into and out of the browser control <html> <head> <script language="JavaScript"> function mousehandler(e) { alert(e.type); alert(e.relatedTarget); } function init() { document.onmouseover = mousehandler; document.onmouseout = mousehandler; } </script> </head> <body onLoad="init()"> <textarea rows="2" cols="20"> </textarea> </body> </html>
Attachments
Add attachment
proposed patch, testcase, etc.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug