Merge branch 'fix-8456-lost-mouseenter' of https://github.com/dmethvin/jquery into dmethvin-fix-8456-lost-mouseenter
This commit is contained in:
commit
7705c35b14
2 changed files with 15 additions and 1 deletions
|
@ -661,7 +661,7 @@ var withinElement = function( event ) {
|
||||||
|
|
||||||
// Chrome does something similar, the parentNode property
|
// Chrome does something similar, the parentNode property
|
||||||
// can be accessed but is null.
|
// can be accessed but is null.
|
||||||
if ( parent !== document && !parent.parentNode ) {
|
if ( parent && parent !== document && !parent.parentNode ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Traverse up the tree
|
// Traverse up the tree
|
||||||
|
|
|
@ -683,6 +683,20 @@ test("hover()", function() {
|
||||||
equals( times, 4, "hover handlers fired" );
|
equals( times, 4, "hover handlers fired" );
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test("mouseover triggers mouseenter", function() {
|
||||||
|
expect(1);
|
||||||
|
|
||||||
|
var count = 0,
|
||||||
|
elem = jQuery("<a />");
|
||||||
|
elem.mouseenter(function () {
|
||||||
|
count++;
|
||||||
|
});
|
||||||
|
elem.trigger('mouseover');
|
||||||
|
equals(count, 1, "make sure mouseover triggers a mouseenter" );
|
||||||
|
|
||||||
|
elem.remove();
|
||||||
|
});
|
||||||
|
|
||||||
test("trigger() shortcuts", function() {
|
test("trigger() shortcuts", function() {
|
||||||
expect(6);
|
expect(6);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue