]> source.dussan.org Git - jquery.git/commitdiff
Fix #13797: .is with single-node context
authorRichard Gibson <richard.gibson@gmail.com>
Sat, 20 Apr 2013 15:40:27 +0000 (11:40 -0400)
committerRichard Gibson <richard.gibson@gmail.com>
Sat, 20 Apr 2013 15:49:44 +0000 (11:49 -0400)
src/traversing.js
test/unit/traversing.js

index 4a274806ea697da89dc75834c1bb04a6ce15aa15..a9c9c9796ab465dedbc26b850963d537ee5f58f2 100644 (file)
@@ -58,14 +58,16 @@ jQuery.fn.extend({
        },
 
        is: function( selector ) {
-               return !!selector && (
-                       typeof selector === "string" ?
-                               // If this is a positional/relative selector, check membership in the returned set
-                               // so $("p:first").is("p:last") won't return true for a doc with two "p".
-                               rneedsContext.test( selector ) ?
-                                       jQuery( selector, this.context ).index( this[0] ) >= 0 :
-                                       jQuery.filter( selector, this ).length > 0 :
-                               this.filter( selector ).length > 0 );
+               return !!winnow(
+                       this,
+
+                       // If this is a positional/relative selector, check membership in the returned set
+                       // so $("p:first").is("p:last") won't return true for a doc with two "p".
+                       typeof selector === "string" && rneedsContext.test( selector ) ?
+                               jQuery( selector ) :
+                               selector || [],
+                       false
+               ).length;
        },
 
        closest: function( selectors, context ) {
index b0e5011e89ec16217a9f8f428df67f3dae27eb85..b98abdcd484e7dc5772868b358e8dbcf7524fe56 100644 (file)
@@ -141,16 +141,22 @@ test("is() with :has() selectors", function() {
 });
 
 test("is() with positional selectors", function() {
-       expect(24);
-
-       var isit = function(sel, match, expect) {
-               equal( jQuery( sel ).is( match ), expect, "jQuery('" + sel + "').is('" + match + "')" );
-       };
-
-       jQuery(
-               "<p id='posp'><a class='firsta' href='#'><em>first</em></a><a class='seconda' href='#'><b>test</b></a><em></em></p>"
-       ).appendTo( "#qunit-fixture" );
+       expect(27);
+
+       var
+               posp = jQuery(
+                       "<p id='posp'><a class='firsta' href='#'><em>first</em></a>" +
+                       "<a class='seconda' href='#'><b>test</b></a><em></em></p>"
+               ).appendTo( "#qunit-fixture" ),
+               isit = function( sel, match, expect ) {
+                       equal(
+                               jQuery( sel ).is( match ),
+                               expect,
+                               "jQuery('" + sel + "').is('" + match + "')"
+                       );
+               };
 
+       isit( "#posp", "p:last", true );
        isit( "#posp", "#posp:first", true );
        isit( "#posp", "#posp:eq(2)", false );
        isit( "#posp", "#posp a:first", false );
@@ -179,6 +185,9 @@ test("is() with positional selectors", function() {
        isit( "#posp em", "#posp a em:eq(2)", false );
 
        ok( jQuery("#option1b").is("#select1 option:not(:first)"), "POS inside of :not() (#10970)" );
+
+       ok( jQuery( posp[0] ).is("p:last"), "context constructed from a single node (#13797)" );
+       ok( !jQuery( posp[0] ).find("#firsta").is("a:first"), "context derived from a single node (#13797)" );
 });
 
 test("index()", function() {