Make sure that mousing over Chrome "internal div" elements results in no trigger of a mouseleave. Fixes #8209.

This commit is contained in:
Anton M 2011-02-08 16:57:06 +01:00
parent 534dbd660e
commit 4a828c93d4

View file

@ -652,13 +652,15 @@ var withinElement = function( event ) {
// Firefox sometimes assigns relatedTarget a XUL element
// which we cannot access the parentNode property of
// Chrome does something similar, the parentNode property
// can be accessed but is null.
try {
// Traverse up the tree
while ( parent && parent !== this ) {
parent = parent.parentNode;
}
if ( parent !== this ) {
if ( parent && parent !== this ) {
// set the correct event type
event.type = event.data;