Skip to content
Permalink
Browse files
Fail silently if closest is somehow called on a document. Fixes #10726.
  • Loading branch information
timmywil committed Jul 25, 2012
1 parent 3478cbb commit 17a26f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
@@ -92,16 +92,13 @@ jQuery.fn.extend({
for ( ; i < l; i++ ) {
cur = this[i];

while ( cur ) {
while ( cur && cur.ownerDocument && cur !== context && cur.nodeType !== 11 ) {
if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) {
ret.push( cur );
break;

} else {
cur = cur.parentNode;
if ( !cur || !cur.ownerDocument || cur === context || cur.nodeType === 11 ) {
break;
}
}
}
}
@@ -275,7 +275,8 @@ test("filter() with positional selectors", function() {
});

test("closest()", function() {
expect(13);
expect( 14 );

deepEqual( jQuery("body").closest("body").get(), q("body"), "closest(body)" );
deepEqual( jQuery("body").closest("html").get(), q("html"), "closest(html)" );
deepEqual( jQuery("body").closest("div").get(), [], "closest(div)" );
@@ -299,6 +300,8 @@ test("closest()", function() {
// Bug #7369
equal( jQuery("<div foo='bar'></div>").closest("[foo]").length, 1, "Disconnected nodes with attribute selector" );
equal( jQuery("<div>text</div>").closest("[lang]").length, 0, "Disconnected nodes with text and non-existent attribute selector" );

ok( !jQuery(document).closest("#foo").length, "Calling closest on a document fails silently" );
});

test("closest(jQuery)", function() {

0 comments on commit 17a26f5

Please sign in to comment.