From d11fcfac186d64457d54d7e80f7d06b97b1c344a Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Mon, 26 Sep 2011 13:00:45 -0400 Subject: [PATCH] Fixed tests to run in IE9 --- test/unit/event.js | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/test/unit/event.js b/test/unit/event.js index 1ca3e7d78..5e6a39d7c 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -2338,7 +2338,7 @@ test(".on and .off", function() { test("delegated events quickIs", function() { expect(17); - var markup = jQuery( + var markup = jQuery( '
'+ '

'+ 'deadbeatclub'+ @@ -2376,7 +2376,7 @@ test("delegated events quickIs", function() { check( "p", "p|.D" ); check( "b", "b|[devo=cool] p|.D" ); check( "em", "em|em q|#famous em|em q|#famous" ); - + markup.find( "b" ).attr( "devo", "NO" ); check( "b", "b|[devo='NO'] p|.D" ); @@ -2384,35 +2384,38 @@ test("delegated events quickIs", function() { }); test("propHooks extensions", function() { - expect( 3 ); + expect( 2 ); // IE requires focusable elements to be visible, so append to body - var $fixture = jQuery( "" ).appendTo( "body" ); + var $fixture = jQuery( "" ).appendTo( "body" ), + saved = jQuery.event.propHooks.click; // Ensure the property doesn't exist - $fixture.bind( "focus", function( event ) { + $fixture.bind( "click", function( event ) { ok( !("blurrinessLevel" in event), "event.blurrinessLevel does not exist" ); - })[0].focus(); + })[0].click(); + + // Must blur the link so click works below + $fixture.unbind( "click" )[0].blur(); + + // Define a custom property for "click" events via the filter function + //ok( !jQuery.event.propHooks.click, "We aren't clobbering an existing click hook" ); - // Must blur the link so focus works below - $fixture.unbind( "focus" )[0].blur(); - // Define a custom property for "focus" events via the filter function - ok( !jQuery.event.propHooks.focus, "We aren't clobbering an existing focus hook" ); - jQuery.event.propHooks.focus = { + jQuery.event.propHooks.click = { filter: function( event, originalEvent ) { event.blurrinessLevel = 42; return event; } }; - // Trigger a native focus and ensure the property is set - $fixture.bind( "focus", function( event ) { + // Trigger a native click and ensure the property is set + $fixture.bind( "click", function( event ) { equals( event.blurrinessLevel, 42, "event.blurrinessLevel was set" ); - })[0].focus(); + })[0].click(); - delete jQuery.event.propHooks.focus; - $fixture.unbind( "focus" ).remove(); + delete jQuery.event.propHooks.click; + $fixture.unbind( "click" ).remove(); }); (function(){ -- 2.39.5