X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=test%2Funit%2Fselector.js;h=065b1d76377d7f79c520a81ea7d2da4016b563bd;hb=1d921e21714ab98421abaee1e1003b4497a950f9;hp=3e65cdae77370d7b7eb3a44b59df425852f41167;hpb=813886a4dff0cf4be62fea51c3ae8be9ef88e12a;p=jquery.git diff --git a/test/unit/selector.js b/test/unit/selector.js index 3e65cda..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 @@ -148,7 +150,7 @@ test("class", function() { }); test("name", function() { - expect(11); + expect(14); t( "Name selector", "input[name=action]", ["text1"] ); t( "Name selector with single quotes", "input[name='action']", ["text1"] ); @@ -163,10 +165,14 @@ test("name", function() { same( jQuery("#form").find("input[name=action]").get(), q("text1"), "Name selector within the context of another element" ); same( jQuery("#form").find("input[name='foo[bar]']").get(), q("hidden2"), "Name selector for grouped form element within the context of another element" ); - var a = jQuery('tName1 AtName2 A
tName1 Div
').appendTo('#main'); + var a = jQuery('
tName1 AtName2 A
tName1 Div
').appendTo('#main').children(); + + equals( a.length, 3, "Make sure the right number of elements were inserted." ); + equals( a[1].id, "tName2ID", "Make sure the right number of elements were inserted." ); t( "Find elements that have similar IDs", "[name=tName1]", ["tName1ID"] ); t( "Find elements that have similar IDs", "[name=tName2]", ["tName2ID"] ); + t( "Find elements that have similar IDs", "#tName2ID", ["tName2ID"] ); a.remove(); }); @@ -379,7 +385,7 @@ test("pseudo - position", function() { t( "Check element position", "div#nothiddendiv:first > div:first", ["nothiddendivchild"] ); }); -if ( Sizzle.selectors.filters.visibility ) { +if ( (window.Sizzle || jQuery.find).selectors.filters.visibility ) { test("pseudo - visibility", function() { expect(11);