From: Oleg Gaidarenko Date: Mon, 12 Oct 2015 15:37:04 +0000 (+0300) Subject: Event: fix incorrect test X-Git-Tag: 1.12.0~106 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e73a67f2e214a1fe3f628b3eed7bc4a3bdbe6d18;p=jquery.git Event: fix incorrect test Which was revealed by 03eaadb131df925d1072afd2496ee3b41d2f1fc6 commit, also do not try to fix typos in data/jquery version Cherry-picked from d92310050ca7bf0b33825d64e052f9a8809c3e9e --- diff --git a/test/data/jquery-1.9.1.js b/test/data/jquery-1.9.1.js index 81bdf19f3..80c97a226 100644 --- a/test/data/jquery-1.9.1.js +++ b/test/data/jquery-1.9.1.js @@ -3525,7 +3525,7 @@ jQuery.each( { related = event.relatedTarget, handleObj = event.handleObj; - // For mouseenter/leave call the handler if related is outside the target. + // For mousenter/leave call the handler if related is outside the target. // NB: No relatedTarget if the mouse left/entered the browser window if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { event.type = handleObj.origType; diff --git a/test/unit/event.js b/test/unit/event.js index 1750ed61b..274cf41b5 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -877,16 +877,10 @@ QUnit.test( "withinElement implemented with jQuery.contains()", function( assert jQuery( "#qunit-fixture" ).append( "
" ); jQuery( "#jc-outer" ).on( "mouseenter mouseleave", function( event ) { - assert.equal( this.id, "jc-outer", this.id + " " + event.type ); - - } ).trigger( "mouseenter" ); + } ); jQuery( "#jc-inner" ).trigger( "mouseenter" ); - - jQuery( "#jc-outer" ).off( "mouseenter mouseleave" ).remove(); - jQuery( "#jc-inner" ).remove(); - } ); QUnit.test( "mouseenter, mouseleave don't catch exceptions", function( assert ) {