Make sure closest works on disconnected DOM nodes. Fixes #7142.
This commit is contained in:
parent
2c04035cd1
commit
385ca2aa89
|
@ -108,7 +108,7 @@ jQuery.fn.extend({
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
cur = cur.parentNode;
|
cur = cur.parentNode;
|
||||||
if ( !cur.ownerDocument || cur === context ) {
|
if ( !cur || !cur.ownerDocument || cur === context ) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -122,7 +122,7 @@ test("filter(jQuery)", function() {
|
||||||
})
|
})
|
||||||
|
|
||||||
test("closest()", function() {
|
test("closest()", function() {
|
||||||
expect(10);
|
expect(11);
|
||||||
same( jQuery("body").closest("body").get(), q("body"), "closest(body)" );
|
same( jQuery("body").closest("body").get(), q("body"), "closest(body)" );
|
||||||
same( jQuery("body").closest("html").get(), q("html"), "closest(html)" );
|
same( jQuery("body").closest("html").get(), q("html"), "closest(html)" );
|
||||||
same( jQuery("body").closest("div").get(), [], "closest(div)" );
|
same( jQuery("body").closest("div").get(), [], "closest(div)" );
|
||||||
|
@ -140,6 +140,8 @@ test("closest()", function() {
|
||||||
//Test that .closest() returns unique'd set
|
//Test that .closest() returns unique'd set
|
||||||
equals( jQuery('#main p').closest('#main').length, 1, "Closest should return a unique set" );
|
equals( jQuery('#main p').closest('#main').length, 1, "Closest should return a unique set" );
|
||||||
|
|
||||||
|
// Test on disconnected node
|
||||||
|
equals( jQuery("<div><p></p></div>").find("p").closest("table").length, 0, "Make sure disconnected closest work." );
|
||||||
});
|
});
|
||||||
|
|
||||||
test("closest(Array)", function() {
|
test("closest(Array)", function() {
|
||||||
|
|
Loading…
Reference in a new issue