X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=test%2Funit%2Fselector.js;h=715823a6f3563bf6a9ab06d290f56798a71d7b86;hb=6f4b08cdf9cb334f8531fe06a20153defb7f95b6;hp=f7c39121c2a9c3bf701407e322572354c6962db6;hpb=9aa0c69c43bad9fce5ef7732692308afb2a38ec6;p=jquery.git diff --git a/test/unit/selector.js b/test/unit/selector.js index f7c3912..715823a 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -1,7 +1,7 @@ module("selector"); test("element", function() { - expect(9); + expect(14); reset(); ok( jQuery("*").size() >= 30, "Select all" ); @@ -18,6 +18,14 @@ test("element", function() { ok( jQuery("#length").length, '<input name="length"> cannot be found under IE, see #945' ); ok( jQuery("#lengthtest input").length, '<input name="length"> cannot be found under IE, see #945' ); + + // Check for unique-ness and sort order + isSet( jQuery("*"), jQuery("*, *"), "Check for duplicates: *, *" ); + isSet( jQuery("p"), jQuery("p, div p"), "Check for duplicates: p, div p" ); + + t( "Checking sort order", "h2, h1", ["header", "banner", "userAgent"] ); + t( "Checking sort order", "h2:first, h1:first", ["header", "banner"] ); + t( "Checking sort order", "p, p a", ["firstp", "simon1", "ap", "google", "groups", "anchor1", "mark", "sndp", "en", "yahoo", "sap", "anchor2", "simon", "first"] ); }); if ( location.protocol != "file:" ) { @@ -215,7 +223,7 @@ test("child and adjacent", function() { }); test("attributes", function() { - expect(40); + expect(37); t( "Attribute Exists", "a[title]", ["google"] ); t( "Attribute Exists", "*[title]", ["google"] ); t( "Attribute Exists", "[title]", ["google"] ); @@ -237,9 +245,10 @@ test("attributes", function() { jQuery("form input")[0].test = 0; jQuery("form input")[1].test = 1; - t( "Expando attribute", "form input[test]", ["text1", "text2"] ); - t( "Expando attribute value", "form input[test=0]", ["text1"] ); - t( "Expando attribute value", "form input[test=1]", ["text2"] ); + // Disabled tests - expandos don't work in all browsers + //t( "Expando attribute", "form input[test]", ["text1", "text2"] ); + //t( "Expando attribute value", "form input[test=0]", ["text1"] ); + //t( "Expando attribute value", "form input[test=1]", ["text2"] ); t( "Attribute containing []", "input[name^='foo[']", ["hidden2"] ); t( "Attribute containing []", "input[name^='foo[bar]']", ["hidden2"] ); @@ -333,7 +342,7 @@ test("pseudo (:) selectors", function() { t( "Form element :text", "#form :text", ["text1", "text2", "hidden2", "name"] ); t( "Form element :radio:checked", "#form :radio:checked", ["radio2"] ); t( "Form element :checkbox:checked", "#form :checkbox:checked", ["check1"] ); - t( "Form element :checkbox:checked, :radio:checked", "#form :checkbox:checked, #form :radio:checked", ["check1", "radio2"] ); + t( "Form element :radio:checked, :checkbox:checked", "#form :radio:checked, #form :checkbox:checked", ["radio2", "check1"] ); t( "Headers", ":header", ["header", "banner", "userAgent"] ); t( "Has Children - :has()", "p:has(a)", ["firstp","ap","en","sap"] );