[Webkit-unassigned] [Bug 35246] New: mouseout and mouseover events with relatedTarget == null should be sent when exiting/entering the browser

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Feb 22 10:08:29 PST 2010


https://bugs.webkit.org/show_bug.cgi?id=35246

           Summary: mouseout and mouseover events with relatedTarget ==
                    null should be sent when exiting/entering the browser
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebKit Gtk
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: grant_gayed at ca.ibm.com


- 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>

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list