From ba86cc0294e483752fd76f620aba6d0a4a7a8ee1 Mon Sep 17 00:00:00 2001 From: jeresig Date: Thu, 17 Dec 2009 13:34:38 -0500 Subject: [PATCH] Reworked some more of the selector tests as well to clean up after themselves. --- test/unit/selector.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/unit/selector.js b/test/unit/selector.js index b8fab08..065b1d7 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -96,9 +96,11 @@ test("id", function() { t( "All Children of ID", "#foo > *", ["sndp", "en", "sap"] ); t( "All Children of ID with no children", "#firstUL > *", [] ); - jQuery('tName1 AtName2 A
tName1 Div
').appendTo('#main'); + var a = jQuery('
tName1 AtName2 A
tName1 Div
').appendTo('#main'); equals( jQuery("#tName1")[0].id, 'tName1', "ID selector with same value for a name attribute" ); equals( jQuery("#tName2").length, 0, "ID selector non-existing but name attribute on an A tag" ); + a.remove(); + t( "ID Selector on Form with an input that has a name of 'id'", "#lengthtest", ["lengthtest"] ); t( "ID selector with non-existant ancestor", "#asdfasdf #foobar", [] ); // bug #986 -- 1.7.10.4