~ubuntu-branches/ubuntu/oneiric/jquery/oneiric-updates

« back to all changes in this revision

Viewing changes to test/unit/selector.js

  • Committer: Steve Langasek
  • Date: 2010-06-04 03:44:23 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: vorlon@debian.org-20100604034423-ifpptgkr8tlc4685
Merging shared upstream rev into target branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
module("selector");
2
2
 
3
3
test("element", function() {
4
 
        expect(18);
 
4
        expect(19);
5
5
        reset();
6
6
 
7
7
        ok( jQuery("*").size() >= 30, "Select all" );
16
16
        t( "Parent Element", "div p", ["firstp","ap","sndp","en","sap","first"] );
17
17
        equals( jQuery("param", "#object1").length, 2, "Object/param as context" );
18
18
 
19
 
        isSet( jQuery("p", document.getElementsByTagName("div")), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
20
 
        isSet( jQuery("p", "div"), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
21
 
        isSet( jQuery("p", jQuery("div")), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
22
 
        isSet( jQuery("div").find("p"), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
 
19
        same( jQuery("p", document.getElementsByTagName("div")).get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
 
20
        same( jQuery("p", "div").get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
 
21
        same( jQuery("p", jQuery("div")).get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
 
22
        same( jQuery("div").find("p").get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
 
23
 
 
24
        same( jQuery("#form").find("select").get(), q("select1","select2","select3"), "Finding selects with a context." );
23
25
        
24
26
        ok( jQuery("#length").length, '<input name="length"> cannot be found under IE, see #945' );
25
27
        ok( jQuery("#lengthtest input").length, '<input name="length"> cannot be found under IE, see #945' );
26
28
 
27
29
        // Check for unique-ness and sort order
28
 
        isSet( jQuery("*"), jQuery("*, *"), "Check for duplicates: *, *" );
29
 
        isSet( jQuery("p"), jQuery("p, div p"), "Check for duplicates: p, div p" );
 
30
        same( jQuery("*").get(), jQuery("*, *").get(), "Check for duplicates: *, *" );
 
31
        same( jQuery("p").get(), jQuery("p, div p").get(), "Check for duplicates: p, div p" );
30
32
 
31
 
        t( "Checking sort order", "h2, h1", ["header", "banner", "userAgent"] );
32
 
        t( "Checking sort order", "h2:first, h1:first", ["header", "banner"] );
 
33
        t( "Checking sort order", "h2, h1", ["qunit-header", "qunit-banner", "qunit-userAgent"] );
 
34
        t( "Checking sort order", "h2:first, h1:first", ["qunit-header", "qunit-banner"] );
33
35
        t( "Checking sort order", "p, p a", ["firstp", "simon1", "ap", "google", "groups", "anchor1", "mark", "sndp", "en", "yahoo", "sap", "anchor2", "simon", "first"] );
34
36
});
35
37
 
51
53
}
52
54
 
53
55
test("broken", function() {
54
 
        expect(7);
 
56
        expect(8);
55
57
        function broken(name, selector) {
56
58
                try {
57
59
                        jQuery(selector);
 
60
                        ok( false, name + ": " + selector );
58
61
                } catch(e){
59
62
                        ok(  typeof e === "string" && e.indexOf("Syntax error") >= 0,
60
63
                                name + ": " + selector );
68
71
        broken( "Broken Selector", "()", [] );
69
72
        broken( "Broken Selector", "<>", [] );
70
73
        broken( "Broken Selector", "{}", [] );
 
74
        broken( "Doesn't exist", ":visble", [] );
71
75
});
72
76
 
73
77
test("id", function() {
96
100
        t( "All Children of ID", "#foo > *", ["sndp", "en", "sap"] );
97
101
        t( "All Children of ID with no children", "#firstUL > *", [] );
98
102
        
99
 
        jQuery('<a name="tName1">tName1 A</a><a name="tName2">tName2 A</a><div id="tName1">tName1 Div</div>').appendTo('#main');
 
103
        var a = jQuery('<div><a name="tName1">tName1 A</a><a name="tName2">tName2 A</a><div id="tName1">tName1 Div</div></div>').appendTo('#main');
100
104
        equals( jQuery("#tName1")[0].id, 'tName1', "ID selector with same value for a name attribute" );
101
105
        equals( jQuery("#tName2").length, 0, "ID selector non-existing but name attribute on an A tag" );
 
106
        a.remove();
 
107
 
102
108
        t( "ID Selector on Form with an input that has a name of 'id'", "#lengthtest", ["lengthtest"] );
103
109
        
104
110
        t( "ID selector with non-existant ancestor", "#asdfasdf #foobar", [] ); // bug #986
105
111
 
106
 
        isSet( jQuery("body").find("div#form"), [], "ID selector within the context of another element" );
 
112
        same( jQuery("body").find("div#form").get(), [], "ID selector within the context of another element" );
107
113
 
108
114
        t( "Underscore ID", "#types_all", ["types_all"] );
109
115
        t( "Dash ID", "#fx-queue", ["fx-queue"] );
119
125
        t( "Class Selector w/ Element", "a.blog", ["mark","simon"] );
120
126
        t( "Parent Class Selector", "p .blog", ["mark","simon"] );
121
127
 
122
 
        isSet( jQuery(".blog", document.getElementsByTagName("p")), q("mark", "simon"), "Finding elements with a context." );
123
 
        isSet( jQuery(".blog", "p"), q("mark", "simon"), "Finding elements with a context." );
124
 
        isSet( jQuery(".blog", jQuery("p")), q("mark", "simon"), "Finding elements with a context." );
125
 
        isSet( jQuery("p").find(".blog"), q("mark", "simon"), "Finding elements with a context." );
 
128
        same( jQuery(".blog", document.getElementsByTagName("p")).get(), q("mark", "simon"), "Finding elements with a context." );
 
129
        same( jQuery(".blog", "p").get(), q("mark", "simon"), "Finding elements with a context." );
 
130
        same( jQuery(".blog", jQuery("p")).get(), q("mark", "simon"), "Finding elements with a context." );
 
131
        same( jQuery("p").find(".blog").get(), q("mark", "simon"), "Finding elements with a context." );
126
132
        
127
133
        t( "Class selector using UTF8", ".台北Táiběi", ["utf8class1"] );
128
134
        //t( "Class selector using UTF8", ".台北", ["utf8class1","utf8class2"] );
140
146
 
141
147
        var div = document.createElement("div");
142
148
  div.innerHTML = "<div class='test e'></div><div class='test'></div>";
143
 
        isSet( jQuery(".e", div), [ div.firstChild ], "Finding a second class." );
 
149
        same( jQuery(".e", div).get(), [ div.firstChild ], "Finding a second class." );
144
150
 
145
151
        div.lastChild.className = "e";
146
152
 
147
 
        isSet( jQuery(".e", div), [ div.firstChild, div.lastChild ], "Finding a modified class." );
 
153
        same( jQuery(".e", div).get(), [ div.firstChild, div.lastChild ], "Finding a modified class." );
148
154
});
149
155
 
150
156
test("name", function() {
151
 
        expect(11);
 
157
        expect(14);
152
158
 
153
159
        t( "Name selector", "input[name=action]", ["text1"] );
154
160
        t( "Name selector with single quotes", "input[name='action']", ["text1"] );
160
166
 
161
167
        t( "Name selector for grouped input", "input[name='types[]']", ["types_all", "types_anime", "types_movie"] )
162
168
 
163
 
        isSet( jQuery("#form").find("input[name=action]"), q("text1"), "Name selector within the context of another element" );
164
 
        isSet( jQuery("#form").find("input[name='foo[bar]']"), q("hidden2"), "Name selector for grouped form element within the context of another element" );
165
 
 
166
 
        var a = jQuery('<a id="tName1ID" name="tName1">tName1 A</a><a id="tName2ID" name="tName2">tName2 A</a><div id="tName1">tName1 Div</div>').appendTo('#main');
 
169
        same( jQuery("#form").find("input[name=action]").get(), q("text1"), "Name selector within the context of another element" );
 
170
        same( jQuery("#form").find("input[name='foo[bar]']").get(), q("hidden2"), "Name selector for grouped form element within the context of another element" );
 
171
 
 
172
        var a = jQuery('<div><a id="tName1ID" name="tName1">tName1 A</a><a id="tName2ID" name="tName2">tName2 A</a><div id="tName1">tName1 Div</div></div>').appendTo('#main').children();
 
173
 
 
174
        equals( a.length, 3, "Make sure the right number of elements were inserted." );
 
175
        equals( a[1].id, "tName2ID", "Make sure the right number of elements were inserted." );
167
176
 
168
177
        t( "Find elements that have similar IDs", "[name=tName1]", ["tName1ID"] );
169
178
        t( "Find elements that have similar IDs", "[name=tName2]", ["tName2ID"] );
 
179
        t( "Find elements that have similar IDs", "#tName2ID", ["tName2ID"] );
170
180
 
171
181
        a.remove();
172
182
});
173
183
 
174
 
 
175
184
test("multiple", function() {
176
185
        expect(4);
177
186
        
178
 
        t( "Comma Support", "h2, p", ["banner","userAgent","firstp","ap","sndp","en","sap","first"]);
179
 
        t( "Comma Support", "h2 , p", ["banner","userAgent","firstp","ap","sndp","en","sap","first"]);
180
 
        t( "Comma Support", "h2 , p", ["banner","userAgent","firstp","ap","sndp","en","sap","first"]);
181
 
        t( "Comma Support", "h2,p", ["banner","userAgent","firstp","ap","sndp","en","sap","first"]);
 
187
        t( "Comma Support", "h2, p", ["qunit-banner","qunit-userAgent","firstp","ap","sndp","en","sap","first"]);
 
188
        t( "Comma Support", "h2 , p", ["qunit-banner","qunit-userAgent","firstp","ap","sndp","en","sap","first"]);
 
189
        t( "Comma Support", "h2 , p", ["qunit-banner","qunit-userAgent","firstp","ap","sndp","en","sap","first"]);
 
190
        t( "Comma Support", "h2,p", ["qunit-banner","qunit-userAgent","firstp","ap","sndp","en","sap","first"]);
182
191
});
183
192
 
184
193
test("child and adjacent", function() {
185
 
        expect(49);
 
194
        expect(27);
186
195
        t( "Child", "p > a", ["simon1","google","groups","mark","yahoo","simon"] );
187
196
        t( "Child", "p> a", ["simon1","google","groups","mark","yahoo","simon"] );
188
197
        t( "Child", "p >a", ["simon1","google","groups","mark","yahoo","simon"] );
199
208
        t( "Adjacent", "p[lang=en] + p", ["sap"] );
200
209
        t( "Adjacent", "a.GROUPS + code + a", ["mark"] );
201
210
        t( "Comma, Child, and Adjacent", "a + a, code > a", ["groups","anchor1","anchor2"] );
 
211
        t( "Element Preceded By", "p ~ div", ["foo", "moretests","tabindex-tests", "liveHandlerOrder", "siblingTest"] );
 
212
        t( "Element Preceded By", "#first ~ div", ["moretests","tabindex-tests", "liveHandlerOrder", "siblingTest"] );
 
213
        t( "Element Preceded By", "#groups ~ a", ["mark"] );
 
214
        t( "Element Preceded By", "#length ~ input", ["idTest"] );
 
215
        t( "Element Preceded By", "#siblingfirst ~ em", ["siblingnext"] );
202
216
 
203
217
        t( "Verify deep class selector", "div.blah > p > a", [] );
204
218
 
205
219
        t( "No element deep selector", "div.foo > span > a", [] );
206
 
        t( "No element not selector", ".container div:not(.excluded) div", [] );
207
220
 
208
 
        isSet( jQuery("> :first", document.getElementById("nothiddendiv")), q("nothiddendivchild"), "Verify child context positional selctor" );
209
 
        isSet( jQuery("> :eq(0)", document.getElementById("nothiddendiv")), q("nothiddendivchild"), "Verify child context positional selctor" );
210
 
        isSet( jQuery("> *:first", document.getElementById("nothiddendiv")), q("nothiddendivchild"), "Verify child context positional selctor" );
 
221
        same( jQuery("> :first", document.getElementById("nothiddendiv")).get(), q("nothiddendivchild"), "Verify child context positional selctor" );
 
222
        same( jQuery("> :eq(0)", document.getElementById("nothiddendiv")).get(), q("nothiddendivchild"), "Verify child context positional selctor" );
 
223
        same( jQuery("> *:first", document.getElementById("nothiddendiv")).get(), q("nothiddendivchild"), "Verify child context positional selctor" );
211
224
 
212
225
        t( "Non-existant ancestors", ".fototab > .thumbnails > a", [] );
213
 
        
214
 
        t( "First Child", "p:first-child", ["firstp","sndp"] );
215
 
        t( "Nth Child", "p:nth-child(1)", ["firstp","sndp"] );
216
 
        t( "Not Nth Child", "p:not(:nth-child(1))", ["ap","en","sap","first"] );
217
 
 
218
 
        // Verify that the child position isn't being cached improperly
219
 
        jQuery("p:first-child").after("<div></div>");
220
 
        jQuery("p:first-child").before("<div></div>").next().remove();
221
 
 
222
 
        t( "First Child", "p:first-child", [] );
223
 
 
224
 
        reset();
225
 
        
226
 
        t( "Last Child", "p:last-child", ["sap"] );
227
 
        t( "Last Child", "a:last-child", ["simon1","anchor1","mark","yahoo","anchor2","simon","liveLink1","liveLink2"] );
228
 
        
229
 
        t( "Nth-child", "#main form#form > *:nth-child(2)", ["text1"] );
230
 
        t( "Nth-child", "#main form#form > :nth-child(2)", ["text1"] );
231
 
 
232
 
        t( "Nth-child", "#form select:first option:nth-child(3)", ["option1c"] );
233
 
        t( "Nth-child", "#form select:first option:nth-child(0n+3)", ["option1c"] );
234
 
        t( "Nth-child", "#form select:first option:nth-child(1n+0)", ["option1a", "option1b", "option1c", "option1d"] );
235
 
        t( "Nth-child", "#form select:first option:nth-child(1n)", ["option1a", "option1b", "option1c", "option1d"] );
236
 
        t( "Nth-child", "#form select:first option:nth-child(n)", ["option1a", "option1b", "option1c", "option1d"] );
237
 
        t( "Nth-child", "#form select:first option:nth-child(even)", ["option1b", "option1d"] );
238
 
        t( "Nth-child", "#form select:first option:nth-child(odd)", ["option1a", "option1c"] );
239
 
        t( "Nth-child", "#form select:first option:nth-child(2n)", ["option1b", "option1d"] );
240
 
        t( "Nth-child", "#form select:first option:nth-child(2n+1)", ["option1a", "option1c"] );
241
 
        t( "Nth-child", "#form select:first option:nth-child(3n)", ["option1c"] );
242
 
        t( "Nth-child", "#form select:first option:nth-child(3n+1)", ["option1a", "option1d"] );
243
 
        t( "Nth-child", "#form select:first option:nth-child(3n+2)", ["option1b"] );
244
 
        t( "Nth-child", "#form select:first option:nth-child(3n+3)", ["option1c"] );
245
 
        t( "Nth-child", "#form select:first option:nth-child(3n-1)", ["option1b"] );
246
 
        t( "Nth-child", "#form select:first option:nth-child(3n-2)", ["option1a", "option1d"] );
247
 
        t( "Nth-child", "#form select:first option:nth-child(3n-3)", ["option1c"] );
248
 
        t( "Nth-child", "#form select:first option:nth-child(3n+0)", ["option1c"] );
249
 
        t( "Nth-child", "#form select:first option:nth-child(-n+3)", ["option1a", "option1b", "option1c"] );
250
226
});
251
227
 
252
228
test("attributes", function() {
253
 
        expect(37);
 
229
        expect(34);
254
230
        t( "Attribute Exists", "a[title]", ["google"] );
255
231
        t( "Attribute Exists", "*[title]", ["google"] );
256
232
        t( "Attribute Exists", "[title]", ["google"] );
269
245
        t( "for Attribute", "form label[for]", ["label-for"] );
270
246
        t( "for Attribute in form", "#form [for=action]", ["label-for"] );
271
247
 
272
 
        jQuery("form input")[0].test = 0;
273
 
        jQuery("form input")[1].test = 1;
274
 
 
275
 
  // Disabled tests - expandos don't work in all browsers
276
 
        //t( "Expando attribute", "form input[test]", ["text1", "text2"] );
277
 
        //t( "Expando attribute value", "form input[test=0]", ["text1"] );
278
 
        //t( "Expando attribute value", "form input[test=1]", ["text2"] );
279
 
        
280
248
        t( "Attribute containing []", "input[name^='foo[']", ["hidden2"] );
281
249
        t( "Attribute containing []", "input[name^='foo[bar]']", ["hidden2"] );
282
250
        t( "Attribute containing []", "input[name*='[bar]']", ["hidden2"] );
304
272
        t("Select options via :selected", "#select3 option:selected", ["option3b", "option3c"] );
305
273
        
306
274
        t( "Grouped Form Elements", "input[name='foo[bar]']", ["hidden2"] );
307
 
        
308
 
        t( ":not() Existing attribute", "#form select:not([multiple])", ["select1", "select2"]);
309
 
        t( ":not() Equals attribute", "#form select:not([name=select1])", ["select2", "select3"]);
310
 
        t( ":not() Equals quoted attribute", "#form select:not([name='select1'])", ["select2", "select3"]);
311
275
});
312
276
 
313
 
test("pseudo (:) selectors", function() {
314
 
        expect(70);
 
277
test("pseudo - child", function() {
 
278
        expect(31);
315
279
        t( "First Child", "p:first-child", ["firstp","sndp"] );
316
280
        t( "Last Child", "p:last-child", ["sap"] );
317
281
        t( "Only Child", "a:only-child", ["simon1","anchor1","yahoo","anchor2","liveLink1","liveLink2"] );
318
282
        t( "Empty", "ul:empty", ["firstUL"] );
319
 
        t( "Enabled UI Element", "#form input:not([type=hidden]):enabled", ["text1","radio1","radio2","check1","check2","hidden2","name","search"] );
320
 
        t( "Disabled UI Element", "#form input:disabled", ["text2"] );
321
 
        t( "Checked UI Element", "#form input:checked", ["radio2","check1"] );
322
 
        t( "Selected Option Element", "#form option:selected", ["option1a","option2d","option3b","option3c"] );
 
283
        t( "Is A Parent", "p:parent", ["firstp","ap","sndp","en","sap","first"] );
 
284
 
 
285
        t( "First Child", "p:first-child", ["firstp","sndp"] );
 
286
        t( "Nth Child", "p:nth-child(1)", ["firstp","sndp"] );
 
287
        t( "Not Nth Child", "p:not(:nth-child(1))", ["ap","en","sap","first"] );
 
288
 
 
289
        // Verify that the child position isn't being cached improperly
 
290
        jQuery("p:first-child").after("<div></div>");
 
291
        jQuery("p:first-child").before("<div></div>").next().remove();
 
292
 
 
293
        t( "First Child", "p:first-child", [] );
 
294
 
 
295
        reset();
 
296
        
 
297
        t( "Last Child", "p:last-child", ["sap"] );
 
298
        t( "Last Child", "a:last-child", ["simon1","anchor1","mark","yahoo","anchor2","simon","liveLink1","liveLink2"] );
 
299
        
 
300
        t( "Nth-child", "#main form#form > *:nth-child(2)", ["text1"] );
 
301
        t( "Nth-child", "#main form#form > :nth-child(2)", ["text1"] );
 
302
 
 
303
        t( "Nth-child", "#form select:first option:nth-child(3)", ["option1c"] );
 
304
        t( "Nth-child", "#form select:first option:nth-child(0n+3)", ["option1c"] );
 
305
        t( "Nth-child", "#form select:first option:nth-child(1n+0)", ["option1a", "option1b", "option1c", "option1d"] );
 
306
        t( "Nth-child", "#form select:first option:nth-child(1n)", ["option1a", "option1b", "option1c", "option1d"] );
 
307
        t( "Nth-child", "#form select:first option:nth-child(n)", ["option1a", "option1b", "option1c", "option1d"] );
 
308
        t( "Nth-child", "#form select:first option:nth-child(even)", ["option1b", "option1d"] );
 
309
        t( "Nth-child", "#form select:first option:nth-child(odd)", ["option1a", "option1c"] );
 
310
        t( "Nth-child", "#form select:first option:nth-child(2n)", ["option1b", "option1d"] );
 
311
        t( "Nth-child", "#form select:first option:nth-child(2n+1)", ["option1a", "option1c"] );
 
312
        t( "Nth-child", "#form select:first option:nth-child(3n)", ["option1c"] );
 
313
        t( "Nth-child", "#form select:first option:nth-child(3n+1)", ["option1a", "option1d"] );
 
314
        t( "Nth-child", "#form select:first option:nth-child(3n+2)", ["option1b"] );
 
315
        t( "Nth-child", "#form select:first option:nth-child(3n+3)", ["option1c"] );
 
316
        t( "Nth-child", "#form select:first option:nth-child(3n-1)", ["option1b"] );
 
317
        t( "Nth-child", "#form select:first option:nth-child(3n-2)", ["option1a", "option1d"] );
 
318
        t( "Nth-child", "#form select:first option:nth-child(3n-3)", ["option1c"] );
 
319
        t( "Nth-child", "#form select:first option:nth-child(3n+0)", ["option1c"] );
 
320
        t( "Nth-child", "#form select:first option:nth-child(-n+3)", ["option1a", "option1b", "option1c"] );
 
321
});
 
322
 
 
323
test("pseudo - misc", function() {
 
324
        expect(6);
 
325
 
 
326
        t( "Headers", ":header", ["qunit-header", "qunit-banner", "qunit-userAgent"] );
 
327
        t( "Has Children - :has()", "p:has(a)", ["firstp","ap","en","sap"] );
 
328
 
323
329
        t( "Text Contains", "a:contains('Google')", ["google","groups"] );
324
330
        t( "Text Contains", "a:contains('Google Groups')", ["groups"] );
325
331
 
326
332
        t( "Text Contains", "a:contains('Google Groups (Link)')", ["groups"] );
327
333
        t( "Text Contains", "a:contains('(Link)')", ["groups"] );
328
 
 
329
 
        t( "Element Preceded By", "p ~ div", ["foo", "moretests","tabindex-tests", "liveHandlerOrder"] );
 
334
});
 
335
 
 
336
 
 
337
test("pseudo - :not", function() {
 
338
        expect(24);
330
339
        t( "Not", "a.blog:not(.link)", ["mark"] );
331
340
        t( "Not - multiple", "#form option:not(:contains('Nothing'),#option1b,:selected)", ["option1c", "option1d", "option2b", "option2c", "option3d", "option3e"] );
332
 
        //t( "Not - complex", "#form option:not([id^='opt']:nth-child(-n+3))", [ "option1a", "option1d", "option2d", "option3d", "option3e"] );
333
341
        t( "Not - recursive", "#form option:not(:not(:selected))[id^='option3']", [ "option3b", "option3c"] );
334
342
 
335
343
        t( ":not() failing interior", "p:not(.foo)", ["firstp","ap","sndp","en","sap","first"] );
347
355
        t( ":not Multiple", "p:not(p,a)", [] );
348
356
        t( ":not Multiple", "p:not(a,p,b)", [] );
349
357
        t( ":not Multiple", ":input:not(:image,:input,:submit)", [] );
350
 
        
 
358
 
 
359
        t( "No element not selector", ".container div:not(.excluded) div", [] );
 
360
 
 
361
        t( ":not() Existing attribute", "#form select:not([multiple])", ["select1", "select2"]);
 
362
        t( ":not() Equals attribute", "#form select:not([name=select1])", ["select2", "select3"]);
 
363
        t( ":not() Equals quoted attribute", "#form select:not([name='select1'])", ["select2", "select3"]);
 
364
 
 
365
        t( ":not() Multiple Class", "#foo a:not(.blog)", ["yahoo","anchor2"] );
 
366
        t( ":not() Multiple Class", "#foo a:not(.link)", ["yahoo","anchor2"] );
 
367
        t( ":not() Multiple Class", "#foo a:not(.blog.link)", ["yahoo","anchor2"] );
 
368
});
 
369
 
 
370
test("pseudo - position", function() {  
 
371
        expect(25);
351
372
        t( "nth Element", "p:nth(1)", ["ap"] );
352
373
        t( "First Element", "p:first", ["firstp"] );
353
374
        t( "Last Element", "p:last", ["first"] );
356
377
        t( "Position Equals", "p:eq(1)", ["ap"] );
357
378
        t( "Position Greater Than", "p:gt(0)", ["ap","sndp","en","sap","first"] );
358
379
        t( "Position Less Than", "p:lt(3)", ["firstp","ap","sndp"] );
359
 
        t( "Is A Parent", "p:parent", ["firstp","ap","sndp","en","sap","first"] );
360
 
        t( "Is Visible", "#form input:visible", [] );
361
 
        t( "Is Visible", "div:visible:not(.testrunner-toolbar):lt(2)", ["nothiddendiv", "nothiddendivchild"] );
362
 
        t( "Is Hidden", "#form input:hidden", ["text1","text2","radio1","radio2","check1","check2","hidden1","hidden2","name","search"] );
363
 
        t( "Is Hidden", "#main:hidden", ["main"] );
364
 
        t( "Is Hidden", "#dl:hidden", ["dl"] );
365
380
 
366
381
        t( "Check position filtering", "div#nothiddendiv:eq(0)", ["nothiddendiv"] );
367
382
        t( "Check position filtering", "div#nothiddendiv:last", ["nothiddendiv"] );
375
390
 
376
391
        t( "Check element position", "div div:eq(0)", ["nothiddendivchild"] );
377
392
        t( "Check element position", "div div:eq(5)", ["t2037"] );
378
 
        t( "Check element position", "div div:eq(27)", ["hide"] );
 
393
        t( "Check element position", "div div:eq(28)", ["hide"] );
379
394
        t( "Check element position", "div div:first", ["nothiddendivchild"] );
380
395
        t( "Check element position", "div > div:first", ["nothiddendivchild"] );
381
396
        t( "Check element position", "#dl div:first div:first", ["foo"] );
382
397
        t( "Check element position", "#dl div:first > div:first", ["foo"] );
383
398
        t( "Check element position", "div#nothiddendiv:first > div:first", ["nothiddendivchild"] );
384
 
        
 
399
});
 
400
 
 
401
if ( (window.Sizzle || jQuery.find).selectors.filters.visibility ) {
 
402
test("pseudo - visibility", function() {
 
403
        expect(11);
 
404
 
 
405
        t( "Is Visible", "#form input:visible", [] );
 
406
        t( "Is Visible", "div:visible:not(#qunit-testrunner-toolbar):lt(2)", ["nothiddendiv", "nothiddendivchild"] );
 
407
        t( "Is Hidden", "#form input:hidden", ["text1","text2","radio1","radio2","check1","check2","hidden1","hidden2","name","search"] );
 
408
        t( "Is Hidden", "#main:hidden", ["main"] );
 
409
        t( "Is Hidden", "#dl:hidden", ["dl"] );
 
410
 
 
411
        var $div = jQuery('<div/>').appendTo("body");
 
412
        $div.css({ fontSize: 0, lineHeight: 0 });// IE also needs to set font-size and line-height to 0
 
413
        $div.width(1).height(0);
 
414
        t( "Is Visible", '#nothiddendivchild:visible', ['nothiddendivchild'] );
 
415
        t( "Is Not Visible", '#nothiddendivchild:hidden', [] );
 
416
        $div.width(0).height(1);
 
417
        t( "Is Visible", '#nothiddendivchild:visible', ['nothiddendivchild'] );
 
418
        t( "Is Not Visible", '#nothiddendivchild:hidden', [] );
 
419
        $div.width(1).height(1);
 
420
        t( "Is Visible", '#nothiddendivchild:visible', ['nothiddendivchild'] );
 
421
        t( "Is Not Visible", '#nothiddendivchild:hidden', [] );
 
422
        $div.remove();
 
423
});
 
424
}
 
425
 
 
426
test("pseudo - form", function() {
 
427
        expect(8);
 
428
 
385
429
        t( "Form element :input", "#form :input", ["text1", "text2", "radio1", "radio2", "check1", "check2", "hidden1", "hidden2", "name", "search", "button", "area1", "select1", "select2", "select3"] );
386
430
        t( "Form element :radio", "#form :radio", ["radio1", "radio2"] );
387
431
        t( "Form element :checkbox", "#form :checkbox", ["check1", "check2"] );
390
434
        t( "Form element :checkbox:checked", "#form :checkbox:checked", ["check1"] );
391
435
        t( "Form element :radio:checked, :checkbox:checked", "#form :radio:checked, #form :checkbox:checked", ["radio2", "check1"] );
392
436
 
393
 
        t( "Headers", ":header", ["header", "banner", "userAgent"] );
394
 
        t( "Has Children - :has()", "p:has(a)", ["firstp","ap","en","sap"] );
 
437
        t( "Selected Option Element", "#form option:selected", ["option1a","option2d","option3b","option3c"] );
395
438
});