Skip to content

Commit

Permalink
Fixes for IE8. Avoid killer recursion in special events during remova…
Browse files Browse the repository at this point in the history
…l. Use q instead of quote in unit tests.
  • Loading branch information
dmethvin authored and timmywil committed Sep 19, 2011
1 parent 9038aa9 commit 005958b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 14 deletions.
24 changes: 13 additions & 11 deletions src/event.js
Expand Up @@ -17,7 +17,7 @@ var rnamespaces = /\.(.*)$/,
var quick = rquickIs.exec( selector );
if ( quick ) {
// 0 1 2 3 4 5 6
// [ _, tag, id, class, attrName, attrValue, pseudo(:empty :first-child :last-child) ]
// [ _, tag, id, class, attrName, attrValue, :(empty first-child last-child) ]
quick[1] = ( quick[1] || "" ).toLowerCase();
quick[3] = quick[3] && new RegExp( "\\b" + quick[3] + "\\b" );
quick[6] = quickPseudoMap[ quick[6] ];
Expand All @@ -32,14 +32,14 @@ var rnamespaces = /\.(.*)$/,
(!m[4] || elem.getAttribute( m[4] ) == m[5]) &&
(!m[6] || !elem[ m[6] ])
);
},
useNativeMethod = function( event ) {
// IE throws error on focus/blur of a hidden element (#1486)
if ( !event.isDefaultPrevented() && this[ event.type ] && event.target && event.target.offsetWidth !== 0 ) {
this[ event.type ]();
return false;
}
};

function useNativeMethod( event ) {
if ( !event.isDefaultPrevented() && this[ event.type ] ) {
this[ event.type ]();
return false;
}
}

/*
* A number of helper functions used for managing events.
Expand Down Expand Up @@ -168,7 +168,7 @@ jQuery.event = {
remove: function( elem, types, handler, selector ) {

var elemData = jQuery.hasData( elem ) && jQuery._data( elem ),
t, tns, type, namespaces,
t, tns, type, namespaces, origCount,
j, events, special, handle, eventType, handleObj;

if ( !elemData || !(events = elemData.events) ) {
Expand Down Expand Up @@ -201,6 +201,7 @@ jQuery.event = {
special = jQuery.event.special[ type ] || {};
type = (selector? special.delegateType : special.bindType ) || type;
eventType = events[ type ] || [];
origCount = eventType.length;
namespaces = namespaces? new RegExp("(^|\\.)" + namespaces.split(".").sort().join("\\.(?:.*\\.)?") + "(\\.|$)") : null;

// Only need to loop for special events or selective removal
Expand Down Expand Up @@ -228,8 +229,9 @@ jQuery.event = {
eventType.length = 0;
}

// remove generic event handler if no more handlers exist
if ( eventType.length === 0 ) {
// Remove generic event handler if we removed something and no more handlers exist
// (avoids potential for endless recursion during removal of special event handlers)
if ( eventType.length === 0 && origCount !== eventType.length ) {
if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) {
jQuery.removeEvent( elem, type, elemData.handle );
}
Expand Down
15 changes: 12 additions & 3 deletions test/unit/event.js
Expand Up @@ -2311,7 +2311,16 @@ test(".on and .off", function() {

test("delegated events quickIs", function() {
expect(23);
var markup = jQuery( '<div#quickis><p class="D">dead<b devo="cool">beat</b>club</p><quote id="famous">worked<em>or</em>borked?<em></em></quote></div>' ),
var markup = jQuery(
'<div>'+
'<p class="D">'+
'dead<b devo="cool">beat</b>club'+
'</p>'+
'<q id="famous">'+
'worked<em>or</em>borked?<em></em>'+
'</q>'+
'</div>'
),
str,
check = function(el, expect){
str = "";
Expand All @@ -2326,7 +2335,7 @@ test("delegated events quickIs", function() {

// tag#id.class[name=value]
markup
.appendTo( "body " )
.appendTo( "body" )
.on( "blink", "em", func )
.on( "blink", ".D", func )
.on( "blink", ".d", func )
Expand All @@ -2342,7 +2351,7 @@ test("delegated events quickIs", function() {
check( "[devo='']", "" );
check( "p", "p|.D p|:first-child" );
check( "b", "b|[devo=cool] p|.D p|:first-child" );
check( "em", "em|em quote|#famous em|em em|em:empty em|em:last-child quote|#famous" );
check( "em", "em|em q|#famous em|em em|em:empty em|em:last-child q|#famous" );

markup.find( "b" ).attr( "devo", "NO" );
check( "b", "b|[devo='NO'] p|.D p|:first-child" );
Expand Down

0 comments on commit 005958b

Please sign in to comment.