3 test("element", function() {
7 ok( jQuery("*").size() >= 30, "Select all" );
8 var all = jQuery("*"), good = true;
9 for ( var i = 0; i < all.length; i++ )
10 if ( all[i].nodeType == 8 )
12 ok( good, "Select all elements, no comment nodes" );
13 t( "Element Selector", "p", ["firstp","ap","sndp","en","sap","first"] );
14 t( "Element Selector", "body", ["body"] );
15 t( "Element Selector", "html", ["html"] );
16 t( "Parent Element", "div p", ["firstp","ap","sndp","en","sap","first"] );
17 equals( jQuery("param", "#object1").length, 2, "Object/param as context" );
19 ok( jQuery("#length").length, '<input name="length"> cannot be found under IE, see #945' );
20 ok( jQuery("#lengthtest input").length, '<input name="length"> cannot be found under IE, see #945' );
23 if ( location.protocol != "file:" ) {
24 test("Element Selector with underscore", function() {
27 jQuery.get("data/with_fries.xml", function(xml) {
28 equals( jQuery("foo_bar", xml).length, 1, "Element Selector with underscore" );
34 test("broken", function() {
36 function broken(name, selector) {
40 ok( typeof e === "string" && e.indexOf("Syntax error") >= 0,
41 name + ": " + selector );
45 broken( "Broken Selector", "[", [] );
46 broken( "Broken Selector", "(", [] );
47 broken( "Broken Selector", "{", [] );
48 broken( "Broken Selector", "<", [] );
49 broken( "Broken Selector", "()", [] );
50 broken( "Broken Selector", "<>", [] );
51 broken( "Broken Selector", "{}", [] );
54 test("id", function() {
56 t( "ID Selector", "#body", ["body"] );
57 t( "ID Selector w/ Element", "body#body", ["body"] );
58 t( "ID Selector w/ Element", "ul#first", [] );
59 t( "ID selector with existing ID descendant", "#firstp #simon1", ["simon1"] );
60 t( "ID selector with non-existant descendant", "#firstp #foobar", [] );
61 t( "ID selector using UTF8", "#台北Táiběi", ["台北Táiběi"] );
62 t( "Multiple ID selectors using UTF8", "#台北Táiběi, #台北", ["台北Táiběi","台北"] );
63 t( "Descendant ID selector using UTF8", "div #台北", ["台北"] );
64 t( "Child ID selector using UTF8", "form > #台北", ["台北"] );
66 t( "Escaped ID", "#foo\\:bar", ["foo:bar"] );
67 t( "Escaped ID", "#test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
68 t( "Descendant escaped ID", "div #foo\\:bar", ["foo:bar"] );
69 t( "Descendant escaped ID", "div #test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
70 t( "Child escaped ID", "form > #foo\\:bar", ["foo:bar"] );
71 t( "Child escaped ID", "form > #test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
73 t( "ID Selector, child ID present", "#form > #radio1", ["radio1"] ); // bug #267
74 t( "ID Selector, not an ancestor ID", "#form #first", [] );
75 t( "ID Selector, not a child ID", "#form > #option1a", [] );
77 t( "All Children of ID", "#foo > *", ["sndp", "en", "sap"] );
78 t( "All Children of ID with no children", "#firstUL > *", [] );
80 jQuery('<a name="tName1">tName1 A</a><a name="tName2">tName2 A</a><div id="tName1">tName1 Div</div>').appendTo('#main');
81 equals( jQuery("#tName1")[0].id, 'tName1', "ID selector with same value for a name attribute" );
82 equals( jQuery("#tName2").length, 0, "ID selector non-existing but name attribute on an A tag" );
83 t( "ID Selector on Form with an input that has a name of 'id'", "#lengthtest", ["lengthtest"] );
85 t( "ID selector with non-existant ancestor", "#asdfasdf #foobar", [] ); // bug #986
87 isSet( jQuery("body").find("div#form"), [], "ID selector within the context of another element" );
90 test("class", function() {
92 t( "Class Selector", ".blog", ["mark","simon"] );
93 t( "Class Selector", ".blog.link", ["simon"] );
94 t( "Class Selector w/ Element", "a.blog", ["mark","simon"] );
95 t( "Parent Class Selector", "p .blog", ["mark","simon"] );
97 t( "Class selector using UTF8", ".台北Táiběi", ["utf8class1"] );
98 //t( "Class selector using UTF8", ".台北", ["utf8class1","utf8class2"] );
99 t( "Class selector using UTF8", ".台北Táiběi.台北", ["utf8class1"] );
100 t( "Class selector using UTF8", ".台北Táiběi, .台北", ["utf8class1","utf8class2"] );
101 t( "Descendant class selector using UTF8", "div .台北Táiběi", ["utf8class1"] );
102 t( "Child class selector using UTF8", "form > .台北Táiběi", ["utf8class1"] );
104 t( "Escaped Class", ".foo\\:bar", ["foo:bar"] );
105 t( "Escaped Class", ".test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
106 t( "Descendant scaped Class", "div .foo\\:bar", ["foo:bar"] );
107 t( "Descendant scaped Class", "div .test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
108 t( "Child escaped Class", "form > .foo\\:bar", ["foo:bar"] );
109 t( "Child escaped Class", "form > .test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
112 test("name", function() {
115 t( "Name selector", "input[name=action]", ["text1"] );
116 t( "Name selector with single quotes", "input[name='action']", ["text1"] );
117 t( "Name selector with double quotes", 'input[name="action"]', ["text1"] );
119 t( "Name selector non-input", "*[name=iframe]", ["iframe"] );
121 t( "Name selector for grouped input", "input[name='types[]']", ["types_all", "types_anime", "types_movie"] )
123 isSet( jQuery("#form").find("input[name=action]"), q("text1"), "Name selector within the context of another element" );
124 isSet( jQuery("#form").find("input[name='foo[bar]']"), q("hidden2"), "Name selector for grouped form element within the context of another element" );
128 test("multiple", function() {
131 var results = ["mark","simon","firstp","ap","sndp","en","sap","first"];
133 if ( document.querySelectorAll ) {
134 results = ["firstp","ap","mark","sndp","en","sap","simon","first"];
137 t( "Comma Support", "a.blog, p", results);
138 t( "Comma Support", "a.blog , p", results);
139 t( "Comma Support", "a.blog ,p", results);
140 t( "Comma Support", "a.blog,p", results);
143 test("child and adjacent", function() {
145 t( "Child", "p > a", ["simon1","google","groups","mark","yahoo","simon"] );
146 t( "Child", "p> a", ["simon1","google","groups","mark","yahoo","simon"] );
147 t( "Child", "p >a", ["simon1","google","groups","mark","yahoo","simon"] );
148 t( "Child", "p>a", ["simon1","google","groups","mark","yahoo","simon"] );
149 t( "Child w/ Class", "p > a.blog", ["mark","simon"] );
150 t( "All Children", "code > *", ["anchor1","anchor2"] );
151 t( "All Grandchildren", "p > * > *", ["anchor1","anchor2"] );
152 t( "Adjacent", "a + a", ["groups"] );
153 t( "Adjacent", "a +a", ["groups"] );
154 t( "Adjacent", "a+ a", ["groups"] );
155 t( "Adjacent", "a+a", ["groups"] );
156 t( "Adjacent", "p + p", ["ap","en","sap"] );
157 t( "Comma, Child, and Adjacent", "a + a, code > a", ["groups","anchor1","anchor2"] );
159 t( "Verify deep class selector", "div.blah > p > a", [] );
161 t( "No element deep selector", "div.foo > span > a", [] );
162 t( "No element not selector", ".container div:not(.excluded) div", [] );
164 isSet( jQuery("> :first", document.getElementById("nothiddendiv")), q("nothiddendivchild"), "Verify child context positional selctor" );
165 isSet( jQuery("> :eq(0)", document.getElementById("nothiddendiv")), q("nothiddendivchild"), "Verify child context positional selctor" );
166 isSet( jQuery("> *:first", document.getElementById("nothiddendiv")), q("nothiddendivchild"), "Verify child context positional selctor" );
168 t( "Non-existant ancestors", ".fototab > .thumbnails > a", [] );
170 t( "First Child", "p:first-child", ["firstp","sndp"] );
171 t( "Nth Child", "p:nth-child(1)", ["firstp","sndp"] );
173 t( "Last Child", "p:last-child", ["sap"] );
174 t( "Last Child", "a:last-child", ["simon1","anchor1","mark","yahoo","anchor2","simon"] );
176 t( "Nth-child", "#main form#form > *:nth-child(2)", ["text1"] );
177 t( "Nth-child", "#main form#form > :nth-child(2)", ["text1"] );
179 t( "Nth-child", "#form select:first option:nth-child(3)", ["option1c"] );
180 t( "Nth-child", "#form select:first option:nth-child(0n+3)", ["option1c"] );
181 t( "Nth-child", "#form select:first option:nth-child(1n+0)", ["option1a", "option1b", "option1c", "option1d"] );
182 t( "Nth-child", "#form select:first option:nth-child(1n)", ["option1a", "option1b", "option1c", "option1d"] );
183 t( "Nth-child", "#form select:first option:nth-child(n)", ["option1a", "option1b", "option1c", "option1d"] );
184 t( "Nth-child", "#form select:first option:nth-child(even)", ["option1b", "option1d"] );
185 t( "Nth-child", "#form select:first option:nth-child(odd)", ["option1a", "option1c"] );
186 t( "Nth-child", "#form select:first option:nth-child(2n)", ["option1b", "option1d"] );
187 t( "Nth-child", "#form select:first option:nth-child(2n+1)", ["option1a", "option1c"] );
188 t( "Nth-child", "#form select:first option:nth-child(3n)", ["option1c"] );
189 t( "Nth-child", "#form select:first option:nth-child(3n+1)", ["option1a", "option1d"] );
190 t( "Nth-child", "#form select:first option:nth-child(3n+2)", ["option1b"] );
191 t( "Nth-child", "#form select:first option:nth-child(3n+3)", ["option1c"] );
192 t( "Nth-child", "#form select:first option:nth-child(3n-1)", ["option1b"] );
193 t( "Nth-child", "#form select:first option:nth-child(3n-2)", ["option1a", "option1d"] );
194 t( "Nth-child", "#form select:first option:nth-child(3n-3)", ["option1c"] );
195 t( "Nth-child", "#form select:first option:nth-child(3n+0)", ["option1c"] );
196 t( "Nth-child", "#form select:first option:nth-child(-n+3)", ["option1a", "option1b", "option1c"] );
199 test("attributes", function() {
201 t( "Attribute Exists", "a[title]", ["google"] );
202 t( "Attribute Exists", "*[title]", ["google"] );
203 t( "Attribute Exists", "[title]", ["google"] );
204 t( "Attribute Exists", "a[ title ]", ["google"] );
206 t( "Attribute Equals", "a[rel='bookmark']", ["simon1"] );
207 t( "Attribute Equals", 'a[rel="bookmark"]', ["simon1"] );
208 t( "Attribute Equals", "a[rel=bookmark]", ["simon1"] );
209 t( "Attribute Equals", "a[href='http://www.google.com/']", ["google"] );
210 t( "Attribute Equals", "a[ rel = 'bookmark' ]", ["simon1"] );
212 document.getElementById("anchor2").href = "#2";
213 t( "href Attribute", "p a[href^=#]", ["anchor2"] );
214 t( "href Attribute", "p a[href*=#]", ["simon1", "anchor2"] );
216 t( "for Attribute", "form label[for]", ["label-for"] );
217 t( "for Attribute in form", "#form [for=action]", ["label-for"] );
219 var results = ["hidden1","radio1","radio2"];
221 if ( document.querySelectorAll ) {
222 results = ["radio1", "radio2", "hidden1"];
225 t( "Multiple Attribute Equals", "#form input[type='hidden'],#form input[type='radio']", results );
226 t( "Multiple Attribute Equals", "#form input[type=\"hidden\"],#form input[type='radio']", results );
227 t( "Multiple Attribute Equals", "#form input[type=hidden],#form input[type=radio]", results );
229 t( "Attribute selector using UTF8", "span[lang=中文]", ["台北"] );
231 t( "Attribute Begins With", "a[href ^= 'http://www']", ["google","yahoo"] );
232 t( "Attribute Ends With", "a[href $= 'org/']", ["mark"] );
233 t( "Attribute Contains", "a[href *= 'google']", ["google","groups"] );
235 t("Select options via :selected", "#select1 option:selected", ["option1a"] );
236 t("Select options via :selected", "#select2 option:selected", ["option2d"] );
237 t("Select options via :selected", "#select3 option:selected", ["option3b", "option3c"] );
239 t( "Grouped Form Elements", "input[name='foo[bar]']", ["hidden2"] );
241 t( ":not() Existing attribute", "#form select:not([multiple])", ["select1", "select2"]);
242 t( ":not() Equals attribute", "#form select:not([name=select1])", ["select2", "select3"]);
243 t( ":not() Equals quoted attribute", "#form select:not([name='select1'])", ["select2", "select3"]);
246 test("pseudo (:) selectors", function() {
248 t( "First Child", "p:first-child", ["firstp","sndp"] );
249 t( "Last Child", "p:last-child", ["sap"] );
250 t( "Only Child", "a:only-child", ["simon1","anchor1","yahoo","anchor2"] );
251 t( "Empty", "ul:empty", ["firstUL"] );
252 t( "Enabled UI Element", "#form input:not([type=hidden]):enabled", ["text1","radio1","radio2","check1","check2","hidden2","name"] );
253 t( "Disabled UI Element", "#form input:disabled", ["text2"] );
254 t( "Checked UI Element", "#form input:checked", ["radio2","check1"] );
255 t( "Selected Option Element", "#form option:selected", ["option1a","option2d","option3b","option3c"] );
256 t( "Text Contains", "a:contains('Google')", ["google","groups"] );
257 t( "Text Contains", "a:contains('Google Groups')", ["groups"] );
258 t( "Element Preceded By", "p ~ div", ["foo","fx-queue","fx-tests", "moretests","tabindex-tests"] );
259 t( "Not", "a.blog:not(.link)", ["mark"] );
260 t( "Not - multiple", "#form option:not(:contains('Nothing'),#option1b,:selected)", ["option1c", "option1d", "option2b", "option2c", "option3d", "option3e"] );
261 //t( "Not - complex", "#form option:not([id^='opt']:nth-child(-n+3))", [ "option1a", "option1d", "option2d", "option3d", "option3e"] );
262 t( "Not - recursive", "#form option:not(:not(:selected))[id^='option3']", [ "option3b", "option3c"] );
264 t( "nth Element", "p:nth(1)", ["ap"] );
265 t( "First Element", "p:first", ["firstp"] );
266 t( "Last Element", "p:last", ["first"] );
267 t( "Even Elements", "p:even", ["firstp","sndp","sap"] );
268 t( "Odd Elements", "p:odd", ["ap","en","first"] );
269 t( "Position Equals", "p:eq(1)", ["ap"] );
270 t( "Position Greater Than", "p:gt(0)", ["ap","sndp","en","sap","first"] );
271 t( "Position Less Than", "p:lt(3)", ["firstp","ap","sndp"] );
272 t( "Is A Parent", "p:parent", ["firstp","ap","sndp","en","sap","first"] );
273 t( "Is Visible", "#form input:visible", ["text1","text2","radio1","radio2","check1","check2","name"] );
274 t( "Is Hidden", "#form input:hidden", ["hidden1","hidden2"] );
276 t( "Check position filtering", "div#nothiddendiv:eq(0)", ["nothiddendiv"] );
277 t( "Check position filtering", "div#nothiddendiv:last", ["nothiddendiv"] );
278 t( "Check position filtering", "div#nothiddendiv:not(:gt(0))", ["nothiddendiv"] );
279 t( "Check position filtering", "#foo > :not(:first)", ["en", "sap"] );
280 t( "Check position filtering", "select > :not(:gt(2))", ["option1a", "option1b", "option1c"] );
281 t( "Check position filtering", "select:lt(2) :not(:first)", ["option1b", "option1c", "option1d", "option2a", "option2b", "option2c", "option2d"] );
282 t( "Check position filtering", "div.nothiddendiv:eq(0)", ["nothiddendiv"] );
283 t( "Check position filtering", "div.nothiddendiv:last", ["nothiddendiv"] );
284 t( "Check position filtering", "div.nothiddendiv:not(:gt(0))", ["nothiddendiv"] );
286 t( "Check element position", "div div:eq(0)", ["nothiddendivchild"] );
287 t( "Check element position", "div div:eq(5)", ["fadeout"] );
288 t( "Check element position", "div div:eq(27)", ["t2037"] );
289 t( "Check element position", "div div:first", ["nothiddendivchild"] );
290 t( "Check element position", "div > div:first", ["nothiddendivchild"] );
291 t( "Check element position", "#dl div:first div:first", ["foo"] );
292 t( "Check element position", "#dl div:first > div:first", ["foo"] );
293 t( "Check element position", "div#nothiddendiv:first > div:first", ["nothiddendivchild"] );
295 t( "Form element :input", "#form :input", ["text1", "text2", "radio1", "radio2", "check1", "check2", "hidden1", "hidden2", "name", "button", "area1", "select1", "select2", "select3"] );
296 t( "Form element :radio", "#form :radio", ["radio1", "radio2"] );
297 t( "Form element :checkbox", "#form :checkbox", ["check1", "check2"] );
298 t( "Form element :text", "#form :text", ["text1", "text2", "hidden2", "name"] );
299 t( "Form element :radio:checked", "#form :radio:checked", ["radio2"] );
300 t( "Form element :checkbox:checked", "#form :checkbox:checked", ["check1"] );
301 t( "Form element :checkbox:checked, :radio:checked", "#form :checkbox:checked, #form :radio:checked", ["check1", "radio2"] );
303 t( "Headers", ":header", ["header", "banner", "userAgent"] );
304 t( "Has Children - :has()", "p:has(a)", ["firstp","ap","en","sap"] );