From a2bd8a53f3a750606abea9bbb6ee2302437d42f3 Mon Sep 17 00:00:00 2001 From: "adam j. sontag" Date: Mon, 21 Jun 2010 13:50:02 -0400 Subject: .closest() should return a unique set of elements, not duplicates of the same ancestor. Fixes #6700 --- test/unit/traversing.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/unit/traversing.js b/test/unit/traversing.js index 179e130ba..b88b74777 100644 --- a/test/unit/traversing.js +++ b/test/unit/traversing.js @@ -120,7 +120,7 @@ test("filter(jQuery)", function() { }) test("closest()", function() { - expect(9); + expect(10); same( jQuery("body").closest("body").get(), q("body"), "closest(body)" ); same( jQuery("body").closest("html").get(), q("html"), "closest(html)" ); same( jQuery("body").closest("div").get(), [], "closest(div)" ); @@ -134,6 +134,10 @@ test("closest()", function() { same( jq.closest("html", document.body).get(), [], "Context limited." ); same( jq.closest("body", document.body).get(), [], "Context limited." ); same( jq.closest("#nothiddendiv", document.body).get(), q("nothiddendiv"), "Context not reached." ); + + //Test that .closest() returns unique'd set + equals( jQuery('#main p').closest('#main').length, 1, "Closest should return a unique set" ); + }); test("closest(Array)", function() { -- cgit v1.2.3