aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authortimmywil <tim.willison@thisismedium.com>2011-03-25 23:52:36 -0400
committertimmywil <tim.willison@thisismedium.com>2011-03-25 23:52:36 -0400
commite93ca40aa7ec4337a57fcdbc699d900e01b4c67e (patch)
tree85d8db8a3b5aff45aec8586271e92e741e073c3b /test
parente6da0fa6a96c9b4314303e251fd6efac98813ab8 (diff)
downloadjquery-e93ca40aa7ec4337a57fcdbc699d900e01b4c67e.tar.gz
jquery-e93ca40aa7ec4337a57fcdbc699d900e01b4c67e.zip
Bug #7369: Check non-existent attribute as well to be sure
Diffstat (limited to 'test')
-rw-r--r--test/unit/traversing.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit/traversing.js b/test/unit/traversing.js
index f5cd8aacf..43a9f22a2 100644
--- a/test/unit/traversing.js
+++ b/test/unit/traversing.js
@@ -148,7 +148,7 @@ test("filter(jQuery)", function() {
})
test("closest()", function() {
- expect(12);
+ expect(13);
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)" );
@@ -170,6 +170,7 @@ test("closest()", function() {
equals( jQuery("<div><p></p></div>").find("p").closest("table").length, 0, "Make sure disconnected closest work." );
// Bug #7369
equals( jQuery('<div foo="bar"></div>').closest('[foo]').length, 1, "Disconnected nodes with attribute selector" );
+ equals( jQuery('<div></div>').closest('[lang]').length, 0, "Disconnected nodes with non-existent attribute selector" );
});
test("closest(Array)", function() {