diff options
author | John Resig <jeresig@gmail.com> | 2009-02-14 16:59:10 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2009-02-14 16:59:10 +0000 |
commit | e16c7fe0f8e2998d2e3ca1bc8f0794c43b29526f (patch) | |
tree | 5d9196b6e3a829d71bb956c0d057285ae63ad350 /test/unit/selector.js | |
parent | 848c45ea17cc03bcabd7ab882359e1c62f9485f5 (diff) | |
download | jquery-e16c7fe0f8e2998d2e3ca1bc8f0794c43b29526f.tar.gz jquery-e16c7fe0f8e2998d2e3ca1bc8f0794c43b29526f.zip |
Make sure that elements are returned in document order - and that the results are unique.
Diffstat (limited to 'test/unit/selector.js')
-rw-r--r-- | test/unit/selector.js | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js index f7c39121c..7f74d7518 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -1,7 +1,7 @@ module("selector"); test("element", function() { - expect(9); + expect(13); reset(); ok( jQuery("*").size() >= 30, "Select all" ); @@ -18,6 +18,13 @@ 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", "p, p a", ["firstp", "simon1", "ap", "google", "groups", "anchor1", "mark", "sndp", "en", "yahoo", "sap", "anchor2", "simon", "first"] ); }); if ( location.protocol != "file:" ) { @@ -333,7 +340,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"] ); |