Close #10882. Test case for "hover" event in 1.9

This commit is contained in:
Dave Methvin 2012-11-24 15:25:54 -05:00
parent b7ec6ddd45
commit 6b00b3cad9

View File

@ -2904,6 +2904,17 @@ test("focus-blur order (#12868)", function() {
}, 50 );
});
test("hover event no longer special since 1.9", function() {
expect( 1 );
jQuery("<div>craft</div>")
.on( "hover", function( e ) {
equal( e.type, "hover", "I am hovering!" );
})
.trigger("hover")
.off("hover");
});
test("fixHooks extensions", function() {
expect( 2 );