From ad71f47b27f463c6952768c5ab2773ae15ffa745 Mon Sep 17 00:00:00 2001 From: Richard Gibson Date: Wed, 24 Apr 2013 09:06:11 -0400 Subject: [PATCH] Fix #13809: Avoid collisions with words reserved by any version of ECMA-262 --- src/attributes.js | 6 +++--- src/sizzle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/attributes.js b/src/attributes.js index 4aabcfc1b..6cefd52ac 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -305,7 +305,7 @@ jQuery.extend({ if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { name = name.toLowerCase(); hooks = jQuery.attrHooks[ name ] || - ( jQuery.expr.match.boolean.test( name ) ? boolHook : nodeHook ); + ( jQuery.expr.match.bool.test( name ) ? boolHook : nodeHook ); } if ( value !== undefined ) { @@ -344,7 +344,7 @@ jQuery.extend({ propName = jQuery.propFix[ name ] || name; // Boolean attributes get special treatment (#10870) - if ( jQuery.expr.match.boolean.test( name ) ) { + if ( jQuery.expr.match.bool.test( name ) ) { // Set corresponding property to false elem[ propName ] = false; } @@ -428,7 +428,7 @@ boolHook = { return name; } }; -jQuery.each( jQuery.expr.match.boolean.source.match( /\w+/g ), function( i, name ) { +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { var getter = jQuery.expr.attrHandle[ name ] || jQuery.find.attr; jQuery.expr.attrHandle[ name ] = function( elem, name, isXML ) { diff --git a/src/sizzle b/src/sizzle index 84a24c9fe..b8789b87f 160000 --- a/src/sizzle +++ b/src/sizzle @@ -1 +1 @@ -Subproject commit 84a24c9fea7c5cd0874c4ba61a1ef77e0b37e08f +Subproject commit b8789b87f1ecb00f0de82b2a13a3474dabdab406 -- 2.39.5