X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fselector.js;h=b8fab08248c0d49c023f6bc586419c330a761fee;hb=3a4bcf8a9ca6d3a986858d2572b356176ae06012;hp=233d11a4be9287166ec07f66baa84e22a8e9c60b;hpb=9d6c4d8413e678203a905ab3bc3a87415a6a70ce;p=jquery.git diff --git a/test/unit/selector.js b/test/unit/selector.js index 233d11a..b8fab08 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -148,7 +148,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 +163,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,6 +383,7 @@ test("pseudo - position", function() { t( "Check element position", "div#nothiddendiv:first > div:first", ["nothiddendivchild"] ); }); +if ( (window.Sizzle || jQuery.find).selectors.filters.visibility ) { test("pseudo - visibility", function() { expect(11); @@ -401,6 +406,7 @@ test("pseudo - visibility", function() { t( "Is Not Visible", '#nothiddendivchild:hidden', [] ); $div.remove(); }); +} test("pseudo - form", function() { expect(8);