X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=test%2Funit%2Fselector.js;h=9be93832088aeca52d23c0f81de6019b9b813401;hb=21dde30348fe9bcbd8db8c1b30e470a9e2f39c16;hp=2ab7e6a3a4f573c2876253badd49e43a3320eded;hpb=868f262eed36c7f562f783e4cefb06db075b5e78;p=jquery.git diff --git a/test/unit/selector.js b/test/unit/selector.js index 2ab7e6a..9be9383 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -1,7 +1,7 @@ module("selector"); test("element", function() { - expect(13); + expect(14); reset(); ok( jQuery("*").size() >= 30, "Select all" ); @@ -24,6 +24,7 @@ test("element", function() { 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"] ); }); @@ -133,12 +134,14 @@ test("class", function() { }); test("name", function() { - expect(7); + expect(9); t( "Name selector", "input[name=action]", ["text1"] ); t( "Name selector with single quotes", "input[name='action']", ["text1"] ); t( "Name selector with double quotes", 'input[name="action"]', ["text1"] ); + t( "Name selector non-input", "[name=test]", ["length", "fx-queue"] ); + t( "Name selector non-input", "[name=div]", ["fadein"] ); t( "Name selector non-input", "*[name=iframe]", ["iframe"] ); t( "Name selector for grouped input", "input[name='types[]']", ["types_all", "types_anime", "types_movie"] )