module("selector", { teardown: moduleTeardown }); /** * This test page is for selector tests that require jQuery in order to do the selection */ test("element - jQuery only", function() { expect( 7 ); var fixture = document.getElementById("qunit-fixture"); deepEqual( jQuery("p", fixture).get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a Node context." ); deepEqual( jQuery("p", "#qunit-fixture").get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a selector context." ); deepEqual( jQuery("p", jQuery("#qunit-fixture")).get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a jQuery object context." ); deepEqual( jQuery("#qunit-fixture").find("p").get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context via .find()." ); ok( jQuery("#length").length, " cannot be found under IE, see #945" ); ok( jQuery("#lengthtest input").length, " cannot be found under IE, see #945" ); // #7533 equal( jQuery("

foo

").find("p").length, 1, "Find where context root is a node and has an ID with CSS3 meta characters" ); }); test("id", function() { expect( 26 ); var a; t( "ID Selector", "#body", ["body"] ); t( "ID Selector w/ Element", "body#body", ["body"] ); t( "ID Selector w/ Element", "ul#first", [] ); t( "ID selector with existing ID descendant", "#firstp #simon1", ["simon1"] ); t( "ID selector with non-existent descendant", "#firstp #foobar", [] ); t( "ID selector using UTF8", "#台北Táiběi", ["台北Táiběi"] ); t( "Multiple ID selectors using UTF8", "#台北Táiběi, #台北", ["台北Táiběi","台北"] ); t( "Descendant ID selector using UTF8", "div #台北", ["台北"] ); t( "Child ID selector using UTF8", "form > #台北", ["台北"] ); t( "Escaped ID", "#foo\\:bar", ["foo:bar"] ); t( "Escaped ID", "#test\\.foo\\[5\\]bar", ["test.foo[5]bar"] ); t( "Descendant escaped ID", "div #foo\\:bar", ["foo:bar"] ); t( "Descendant escaped ID", "div #test\\.foo\\[5\\]bar", ["test.foo[5]bar"] ); t( "Child escaped ID", "form > #foo\\:bar", ["foo:bar"] ); t( "Child escaped ID", "form > #test\\.foo\\[5\\]bar", ["test.foo[5]bar"] ); t( "ID Selector, child ID present", "#form > #radio1", ["radio1"] ); // bug #267 t( "ID Selector, not an ancestor ID", "#form #first", [] ); t( "ID Selector, not a child ID", "#form > #option1a", [] ); t( "All Children of ID", "#foo > *", ["sndp", "en", "sap"] ); t( "All Children of ID with no children", "#firstUL > *", [] ); a = jQuery("").appendTo("#qunit-fixture"); t( "ID Selector contains backslash", "#backslash\\\\foo", ["backslash\\foo"] ); t( "ID Selector on Form with an input that has a name of 'id'", "#lengthtest", ["lengthtest"] ); t( "ID selector with non-existent ancestor", "#asdfasdf #foobar", [] ); // bug #986 t( "Underscore ID", "#types_all", ["types_all"] ); t( "Dash ID", "#qunit-fixture", ["qunit-fixture"] ); t( "ID with weird characters in it", "#name\\+value", ["name+value"] ); }); test("class - jQuery only", function() { expect( 4 ); deepEqual( jQuery(".blog", document.getElementsByTagName("p")).get(), q("mark", "simon"), "Finding elements with a context." ); deepEqual( jQuery(".blog", "p").get(), q("mark", "simon"), "Finding elements with a context." ); deepEqual( jQuery(".blog", jQuery("p")).get(), q("mark", "simon"), "Finding elements with a context." ); deepEqual( jQuery("p").find(".blog").get(), q("mark", "simon"), "Finding elements with a context." ); }); test("name", function() { expect( 5 ); var form; 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 for grouped input", "input[name='types[]']", ["types_all", "types_anime", "types_movie"] ); form = jQuery("
").appendTo("body"); equal( jQuery("input", form[0]).length, 1, "Make sure that rooted queries on forms (with possible expandos) work." ); form.remove(); }); test( "selectors with comma", function() { expect( 4 ); var fixture = jQuery( "

" ); equal( fixture.find( "h2, div p" ).filter( "p" ).length, 2, "has to find two

" ); equal( fixture.find( "h2, div p" ).filter( "h2" ).length, 1, "has to find one

" ); equal( fixture.find( "h2 , div p" ).filter( "p" ).length, 2, "has to find two

" ); equal( fixture.find( "h2 , div p" ).filter( "h2" ).length, 1, "has to find one

" ); }); test( "child and adjacent", function() { expect( 27 ); var nothiddendiv; t( "Child", "p > a", ["simon1","google","groups","mark","yahoo","simon"] ); t( "Child", "p> a", ["simon1","google","groups","mark","yahoo","simon"] ); t( "Child", "p >a", ["simon1","google","groups","mark","yahoo","simon"] ); t( "Child", "p>a", ["simon1","google","groups","mark","yahoo","simon"] ); t( "Child w/ Class", "p > a.blog", ["mark","simon"] ); t( "All Children", "code > *", ["anchor1","anchor2"] ); t( "All Grandchildren", "p > * > *", ["anchor1","anchor2"] ); t( "Adjacent", "p + p", ["ap","en","sap"] ); t( "Adjacent", "p#firstp + p", ["ap"] ); t( "Adjacent", "p[lang=en] + p", ["sap"] ); t( "Adjacent", "a.GROUPS + code + a", ["mark"] ); t( "Element Preceded By", "#groups ~ a", ["mark"] ); t( "Element Preceded By", "#length ~ input", ["idTest"] ); t( "Element Preceded By", "#siblingfirst ~ em", ["siblingnext", "siblingthird"] ); t( "Element Preceded By (multiple)", "#siblingTest em ~ em ~ em ~ span", ["siblingspan"] ); t( "Element Preceded By, Containing", "#liveHandlerOrder ~ div em:contains('1')", ["siblingfirst"] ); t( "Multiple combinators selects all levels", "#siblingTest em *", ["siblingchild", "siblinggrandchild", "siblinggreatgrandchild"] ); t( "Multiple combinators selects all levels", "#siblingTest > em *", ["siblingchild", "siblinggrandchild", "siblinggreatgrandchild"] ); t( "Multiple sibling combinators doesn't miss general siblings", "#siblingTest > em:first-child + em ~ span", ["siblingspan"] ); t( "Combinators are not skipped when mixing general and specific", "#siblingTest > em:contains('x') + em ~ span", [] ); equal( jQuery("#listWithTabIndex").length, 1, "Parent div for next test is found via ID (#8310)" ); equal( jQuery("#listWithTabIndex li:eq(2) ~ li").length, 1, "Find by general sibling combinator (#8310)" ); equal( jQuery("#__sizzle__").length, 0, "Make sure the temporary id assigned by sizzle is cleared out (#8310)" ); equal( jQuery("#listWithTabIndex").length, 1, "Parent div for previous test is still found via ID (#8310)" ); t( "Verify deep class selector", "div.blah > p > a", [] ); t( "No element deep selector", "div.foo > span > a", [] ); nothiddendiv = document.getElementById("nothiddendiv"); t( "Non-existent ancestors", ".fototab > .thumbnails > a", [] ); }); test("attributes", function() { expect( 54 ); var attrbad, div, withScript; t( "Find elements with a tabindex attribute", "[tabindex]", ["listWithTabIndex", "foodWithNegativeTabIndex", "linkWithTabIndex", "linkWithNegativeTabIndex", "linkWithNoHrefWithTabIndex", "linkWithNoHrefWithNegativeTabIndex"] ); t( "Attribute Exists", "#qunit-fixture a[title]", ["google"] ); t( "Attribute Exists (case-insensitive)", "#qunit-fixture a[TITLE]", ["google"] ); t( "Attribute Exists", "#qunit-fixture *[title]", ["google"] ); t( "Attribute Exists", "#qunit-fixture [title]", ["google"] ); t( "Attribute Exists", "#qunit-fixture a[ title ]", ["google"] ); t( "Boolean attribute exists", "#select2 option[selected]", ["option2d"]); t( "Boolean attribute equals", "#select2 option[selected='selected']", ["option2d"]); t( "Attribute Equals", "#qunit-fixture a[rel='bookmark']", ["simon1"] ); t( "Attribute Equals", "#qunit-fixture a[rel='bookmark']", ["simon1"] ); t( "Attribute Equals", "#qunit-fixture a[rel=bookmark]", ["simon1"] ); t( "Attribute Equals", "#qunit-fixture a[href='http://www.google.com/']", ["google"] ); t( "Attribute Equals", "#qunit-fixture a[ rel = 'bookmark' ]", ["simon1"] ); t( "Attribute Equals Number", "#qunit-fixture option[value=1]", ["option1b","option2b","option3b","option4b","option5c"] ); t( "Attribute Equals Number", "#qunit-fixture li[tabIndex=-1]", ["foodWithNegativeTabIndex"] ); document.getElementById("anchor2").href = "#2"; t( "href Attribute", "p a[href^='#']", ["anchor2"] ); t( "href Attribute", "p a[href*='#']", ["simon1", "anchor2"] ); t( "for Attribute", "form label[for]", ["label-for"] ); t( "for Attribute in form", "#form [for=action]", ["label-for"] ); t( "Attribute containing []", "input[name^='foo[']", ["hidden2"] ); t( "Attribute containing []", "input[name^='foo[bar]']", ["hidden2"] ); t( "Attribute containing []", "input[name*='[bar]']", ["hidden2"] ); t( "Attribute containing []", "input[name$='bar]']", ["hidden2"] ); t( "Attribute containing []", "input[name$='[bar]']", ["hidden2"] ); t( "Attribute containing []", "input[name$='foo[bar]']", ["hidden2"] ); t( "Attribute containing []", "input[name*='foo[bar]']", ["hidden2"] ); t( "Multiple Attribute Equals", "#form input[type='radio'], #form input[type='hidden']", ["radio1", "radio2", "hidden1"] ); t( "Multiple Attribute Equals", "#form input[type='radio'], #form input[type=\"hidden\"]", ["radio1", "radio2", "hidden1"] ); t( "Multiple Attribute Equals", "#form input[type='radio'], #form input[type=hidden]", ["radio1", "radio2", "hidden1"] ); t( "Attribute selector using UTF8", "span[lang=中文]", ["台北"] ); t( "Attribute Begins With", "a[href ^= 'http://www']", ["google","yahoo"] ); t( "Attribute Ends With", "a[href $= 'org/']", ["mark"] ); t( "Attribute Contains", "a[href *= 'google']", ["google","groups"] ); t( "Attribute Is Not Equal", "#ap a[hreflang!='en']", ["google","groups","anchor1"] ); t( "Empty values", "#select1 option[value='']", ["option1a"] ); t( "Empty values", "#select1 option[value!='']", ["option1b","option1c","option1d"] ); t( "Select options via :selected", "#select1 option:selected", ["option1a"] ); t( "Select options via :selected", "#select2 option:selected", ["option2d"] ); t( "Select options via :selected", "#select3 option:selected", ["option3b", "option3c"] ); t( "Select options via :selected", "select[name='select2'] option:selected", ["option2d"] ); t( "Grouped Form Elements", "input[name='foo[bar]']", ["hidden2"] ); // Make sure attribute value quoting works correctly. See jQuery #6093; #6428; #13894 // Use seeded results to bypass querySelectorAll optimizations attrbad = jQuery( "" + "" + "" + "" + "" + "" + "" + "" + "" ).appendTo("#qunit-fixture").get(); t( "Underscores don't need escaping", "input[id=types_all]", ["types_all"] ); t( "input[type=text]", "#form input[type=text]", ["text1", "text2", "hidden2", "name"] ); t( "input[type=search]", "#form input[type=search]", ["search"] ); withScript = supportjQuery( "