Fix #10567. Make sure quickIs matches correct class name.

This commit is contained in:
Dave Methvin 2011-10-24 17:26:43 -04:00
parent 09c089aac9
commit ee3eb6cabf
2 changed files with 9 additions and 1 deletions

View File

@ -16,7 +16,7 @@ var rnamespaces = /\.(.*)$/,
// 0 1 2 3 4 5
// [ _, tag, id, class, attrName, attrValue ]
quick[1] = ( quick[1] || "" ).toLowerCase();
quick[3] = quick[3] && new RegExp( "\\b" + quick[3] + "\\b" );
quick[3] = quick[3] && new RegExp( "(?:^|\\w)" + quick[3] + "(?:\\w|$)" );
}
return quick;
},

View File

@ -2452,6 +2452,14 @@ test("delegated events quickIs", function() {
markup.find( "b" ).attr( "devo", "NO" );
check( "b", "b|[devo='NO'] p|.D" );
markup
.on( "blink", ".tricky", function() {
ok( false, "triggered on wrong class name match" );
})
.find( "p" )
.attr( "class", "tricky-match" )
.trigger( "blink" );
markup.remove();
});