X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;ds=sidebyside;f=test%2Funit%2Fselector.js;h=065b1d76377d7f79c520a81ea7d2da4016b563bd;hb=ba86cc0294e483752fd76f620aba6d0a4a7a8ee1;hp=3332b1bbd6fd3620322ac6c8403a899ee2ad5620;hpb=0f0fd1aee34b81411419ae3b152e03dfdf58b4f4;p=jquery.git diff --git a/test/unit/selector.js b/test/unit/selector.js index 3332b1b..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,20 +385,18 @@ 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(13); + expect(11); t( "Is Visible", "#form input:visible", [] ); t( "Is Visible", "div:visible:not(#qunit-testrunner-toolbar):lt(2)", ["nothiddendiv", "nothiddendivchild"] ); t( "Is Hidden", "#form input:hidden", ["text1","text2","radio1","radio2","check1","check2","hidden1","hidden2","name","search"] ); t( "Is Hidden", "#main:hidden", ["main"] ); t( "Is Hidden", "#dl:hidden", ["dl"] ); - - var $div = jQuery('#nothiddendivchild'); + + var $div = jQuery('
').appendTo("body"); $div.css({ fontSize: 0, lineHeight: 0 });// IE also needs to set font-size and line-height to 0 - $div.width(0).height(0); - t( "Is Hidden", '#nothiddendivchild:hidden', ['nothiddendivchild'] ); - t( "Is Not Hidden", '#nothiddendivchild:visible', [] ); $div.width(1).height(0); t( "Is Visible", '#nothiddendivchild:visible', ['nothiddendivchild'] ); t( "Is Not Visible", '#nothiddendivchild:hidden', [] ); @@ -402,8 +406,9 @@ test("pseudo - visibility", function() { $div.width(1).height(1); t( "Is Visible", '#nothiddendivchild:visible', ['nothiddendivchild'] ); t( "Is Not Visible", '#nothiddendivchild:hidden', [] ); - $div.width('').height('').css({ fontSize: '', lineHeight: '' }); + $div.remove(); }); +} test("pseudo - form", function() { expect(8);