Clean trailing whitespace from all files.
[jquery.git] / test / unit / traversing.js
1 module("traversing");
2
3 test("find(String)", function() {
4         expect(5);
5         equals( 'Yahoo', jQuery('#foo').find('.blogTest').text(), 'Check for find' );
6
7         // using contents will get comments regular, text, and comment nodes
8         var j = jQuery("#nonnodes").contents();
9         equals( j.find("div").length, 0, "Check node,textnode,comment to find zero divs" );
10
11         same( jQuery("#main").find("> div").get(), q("foo", "moretests", "tabindex-tests", "liveHandlerOrder", "siblingTest"), "find child elements" );
12         same( jQuery("#main").find("> #foo, > #moretests").get(), q("foo", "moretests"), "find child elements" );
13         same( jQuery("#main").find("> #foo > p").get(), q("sndp", "en", "sap"), "find child elements" );
14 });
15
16 test("is(String)", function() {
17         expect(26);
18         ok( jQuery('#form').is('form'), 'Check for element: A form must be a form' );
19         ok( !jQuery('#form').is('div'), 'Check for element: A form is not a div' );
20         ok( jQuery('#mark').is('.blog'), 'Check for class: Expected class "blog"' );
21         ok( !jQuery('#mark').is('.link'), 'Check for class: Did not expect class "link"' );
22         ok( jQuery('#simon').is('.blog.link'), 'Check for multiple classes: Expected classes "blog" and "link"' );
23         ok( !jQuery('#simon').is('.blogTest'), 'Check for multiple classes: Expected classes "blog" and "link", but not "blogTest"' );
24         ok( jQuery('#en').is('[lang="en"]'), 'Check for attribute: Expected attribute lang to be "en"' );
25         ok( !jQuery('#en').is('[lang="de"]'), 'Check for attribute: Expected attribute lang to be "en", not "de"' );
26         ok( jQuery('#text1').is('[type="text"]'), 'Check for attribute: Expected attribute type to be "text"' );
27         ok( !jQuery('#text1').is('[type="radio"]'), 'Check for attribute: Expected attribute type to be "text", not "radio"' );
28         ok( jQuery('#text2').is(':disabled'), 'Check for pseudoclass: Expected to be disabled' );
29         ok( !jQuery('#text1').is(':disabled'), 'Check for pseudoclass: Expected not disabled' );
30         ok( jQuery('#radio2').is(':checked'), 'Check for pseudoclass: Expected to be checked' );
31         ok( !jQuery('#radio1').is(':checked'), 'Check for pseudoclass: Expected not checked' );
32         ok( jQuery('#foo').is(':has(p)'), 'Check for child: Expected a child "p" element' );
33         ok( !jQuery('#foo').is(':has(ul)'), 'Check for child: Did not expect "ul" element' );
34         ok( jQuery('#foo').is(':has(p):has(a):has(code)'), 'Check for childs: Expected "p", "a" and "code" child elements' );
35         ok( !jQuery('#foo').is(':has(p):has(a):has(code):has(ol)'), 'Check for childs: Expected "p", "a" and "code" child elements, but no "ol"' );
36         ok( !jQuery('#foo').is(0), 'Expected false for an invalid expression - 0' );
37         ok( !jQuery('#foo').is(null), 'Expected false for an invalid expression - null' );
38         ok( !jQuery('#foo').is(''), 'Expected false for an invalid expression - ""' );
39         ok( !jQuery('#foo').is(undefined), 'Expected false for an invalid expression - undefined' );
40
41         // test is() with comma-seperated expressions
42         ok( jQuery('#en').is('[lang="en"],[lang="de"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
43         ok( jQuery('#en').is('[lang="de"],[lang="en"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
44         ok( jQuery('#en').is('[lang="en"] , [lang="de"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
45         ok( jQuery('#en').is('[lang="de"] , [lang="en"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
46 });
47
48 test("index()", function() {
49         expect(1);
50
51         equals( jQuery("#text2").index(), 2, "Returns the index of a child amongst its siblings" )
52 });
53
54 test("index(Object|String|undefined)", function() {
55         expect(16);
56
57         var elements = jQuery([window, document]),
58                 inputElements = jQuery('#radio1,#radio2,#check1,#check2');
59
60         // Passing a node
61         equals( elements.index(window), 0, "Check for index of elements" );
62         equals( elements.index(document), 1, "Check for index of elements" );
63         equals( inputElements.index(document.getElementById('radio1')), 0, "Check for index of elements" );
64         equals( inputElements.index(document.getElementById('radio2')), 1, "Check for index of elements" );
65         equals( inputElements.index(document.getElementById('check1')), 2, "Check for index of elements" );
66         equals( inputElements.index(document.getElementById('check2')), 3, "Check for index of elements" );
67         equals( inputElements.index(window), -1, "Check for not found index" );
68         equals( inputElements.index(document), -1, "Check for not found index" );
69
70         // Passing a jQuery object
71         // enabled since [5500]
72         equals( elements.index( elements ), 0, "Pass in a jQuery object" );
73         equals( elements.index( elements.eq(1) ), 1, "Pass in a jQuery object" );
74         equals( jQuery("#form :radio").index( jQuery("#radio2") ), 1, "Pass in a jQuery object" );
75
76         // Passing a selector or nothing
77         // enabled since [6330]
78         equals( jQuery('#text2').index(), 2, "Check for index amongst siblings" );
79         equals( jQuery('#form').children().eq(4).index(), 4, "Check for index amongst siblings" );
80         equals( jQuery('#radio2').index('#form :radio') , 1, "Check for index within a selector" );
81         equals( jQuery('#form :radio').index( jQuery('#radio2') ), 1, "Check for index within a selector" );
82         equals( jQuery('#radio2').index('#form :text') , -1, "Check for index not found within a selector" );
83 });
84
85 test("filter(Selector)", function() {
86         expect(5);
87         same( jQuery("#form input").filter(":checked").get(), q("radio2", "check1"), "filter(String)" );
88         same( jQuery("p").filter("#ap, #sndp").get(), q("ap", "sndp"), "filter('String, String')" );
89         same( jQuery("p").filter("#ap,#sndp").get(), q("ap", "sndp"), "filter('String,String')" );
90
91         // using contents will get comments regular, text, and comment nodes
92         var j = jQuery("#nonnodes").contents();
93         equals( j.filter("span").length, 1, "Check node,textnode,comment to filter the one span" );
94         equals( j.filter("[name]").length, 0, "Check node,textnode,comment to filter the one span" );
95 });
96
97 test("filter(Function)", function() {
98         expect(2);
99
100         same( jQuery("p").filter(function() { return !jQuery("a", this).length }).get(), q("sndp", "first"), "filter(Function)" );
101
102         same( jQuery("p").filter(function(i, elem) { return !jQuery("a", elem).length }).get(), q("sndp", "first"), "filter(Function) using arg" );
103 });
104
105 test("filter(Element)", function() {
106         expect(1);
107
108         var element = document.getElementById("text1");
109         same( jQuery("#form input").filter(element).get(), q("text1"), "filter(Element)" );
110 });
111
112 test("filter(Array)", function() {
113         expect(1);
114
115         var elements = [ document.getElementById("text1") ];
116         same( jQuery("#form input").filter(elements).get(), q("text1"), "filter(Element)" );
117 });
118
119 test("filter(jQuery)", function() {
120         expect(1);
121
122         var elements = jQuery("#text1");
123         same( jQuery("#form input").filter(elements).get(), q("text1"), "filter(Element)" );
124 })
125
126 test("closest()", function() {
127         expect(11);
128         same( jQuery("body").closest("body").get(), q("body"), "closest(body)" );
129         same( jQuery("body").closest("html").get(), q("html"), "closest(html)" );
130         same( jQuery("body").closest("div").get(), [], "closest(div)" );
131         same( jQuery("#main").closest("span,#html").get(), q("html"), "closest(span,#html)" );
132
133         same( jQuery("div:eq(1)").closest("div:first").get(), [], "closest(div:first)" );
134         same( jQuery("div").closest("body:first div:last").get(), q("fx-tests"), "closest(body:first div:last)" );
135
136         // Test .closest() limited by the context
137         var jq = jQuery("#nothiddendivchild");
138         same( jq.closest("html", document.body).get(), [], "Context limited." );
139         same( jq.closest("body", document.body).get(), [], "Context limited." );
140         same( jq.closest("#nothiddendiv", document.body).get(), q("nothiddendiv"), "Context not reached." );
141
142         //Test that .closest() returns unique'd set
143         equals( jQuery('#main p').closest('#main').length, 1, "Closest should return a unique set" );
144
145         // Test on disconnected node
146         equals( jQuery("<div><p></p></div>").find("p").closest("table").length, 0, "Make sure disconnected closest work." );
147 });
148
149 test("closest(Array)", function() {
150         expect(7);
151         same( jQuery("body").closest(["body"]), [{selector:"body", elem:document.body, level:1}], "closest([body])" );
152         same( jQuery("body").closest(["html"]), [{selector:"html", elem:document.documentElement, level:2}], "closest([html])" );
153         same( jQuery("body").closest(["div"]), [], "closest([div])" );
154         same( jQuery("#yahoo").closest(["div"]), [{"selector":"div", "elem": document.getElementById("foo"), "level": 3}, { "selector": "div", "elem": document.getElementById("main"), "level": 4 }], "closest([div])" );
155         same( jQuery("#main").closest(["span,#html"]), [{selector:"span,#html", elem:document.documentElement, level:4}], "closest([span,#html])" );
156
157         same( jQuery("body").closest(["body","html"]), [{selector:"body", elem:document.body, level:1}, {selector:"html", elem:document.documentElement, level:2}], "closest([body, html])" );
158         same( jQuery("body").closest(["span","html"]), [{selector:"html", elem:document.documentElement, level:2}], "closest([body, html])" );
159 });
160
161 test("not(Selector)", function() {
162         expect(7);
163         equals( jQuery("#main > p#ap > a").not("#google").length, 2, "not('selector')" );
164         same( jQuery("p").not(".result").get(), q("firstp", "ap", "sndp", "en", "sap", "first"), "not('.class')" );
165         same( jQuery("p").not("#ap, #sndp, .result").get(), q("firstp", "en", "sap", "first"), "not('selector, selector')" );
166         same( jQuery("#form option").not("option.emptyopt:contains('Nothing'),[selected],[value='1']").get(), q("option1c", "option1d", "option2c", "option3d", "option3e", "option4e","option5b"), "not('complex selector')");
167
168         same( jQuery('#ap *').not('code').get(), q("google", "groups", "anchor1", "mark"), "not('tag selector')" );
169         same( jQuery('#ap *').not('code, #mark').get(), q("google", "groups", "anchor1"), "not('tag, ID selector')" );
170         same( jQuery('#ap *').not('#mark, code').get(), q("google", "groups", "anchor1"), "not('ID, tag selector')");
171 });
172
173 test("not(Element)", function() {
174         expect(1);
175
176         var selects = jQuery("#form select");
177         same( selects.not( selects[1] ).get(), q("select1", "select3", "select4", "select5"), "filter out DOM element");
178 });
179
180 test("not(Function)", function() {
181         same( jQuery("p").not(function() { return jQuery("a", this).length }).get(), q("sndp", "first"), "not(Function)" );
182 });
183
184 test("not(Array)", function() {
185         expect(2);
186
187         equals( jQuery("#main > p#ap > a").not(document.getElementById("google")).length, 2, "not(DOMElement)" );
188         equals( jQuery("p").not(document.getElementsByTagName("p")).length, 0, "not(Array-like DOM collection)" );
189 });
190
191 test("not(jQuery)", function() {
192         expect(1);
193
194         same( jQuery("p").not(jQuery("#ap, #sndp, .result")).get(), q("firstp", "en", "sap", "first"), "not(jQuery)" );
195 });
196
197 test("has(Element)", function() {
198         expect(2);
199
200         var obj = jQuery("#main").has(jQuery("#sndp")[0]);
201         same( obj.get(), q("main"), "Keeps elements that have the element as a descendant" );
202
203         var multipleParent = jQuery("#main, #header").has(jQuery("#sndp")[0]);
204         same( obj.get(), q("main"), "Does not include elements that do not have the element as a descendant" );
205 });
206
207 test("has(Selector)", function() {
208         expect(3);
209
210         var obj = jQuery("#main").has("#sndp");
211         same( obj.get(), q("main"), "Keeps elements that have any element matching the selector as a descendant" );
212
213         var multipleParent = jQuery("#main, #header").has("#sndp");
214         same( obj.get(), q("main"), "Does not include elements that do not have the element as a descendant" );
215
216         var multipleHas = jQuery("#main").has("#sndp, #first");
217         same( multipleHas.get(), q("main"), "Only adds elements once" );
218 });
219
220 test("has(Arrayish)", function() {
221         expect(3);
222
223         var simple = jQuery("#main").has(jQuery("#sndp"));
224         same( simple.get(), q("main"), "Keeps elements that have any element in the jQuery list as a descendant" );
225
226         var multipleParent = jQuery("#main, #header").has(jQuery("#sndp"));
227         same( multipleParent.get(), q("main"), "Does not include elements that do not have an element in the jQuery list as a descendant" );
228
229         var multipleHas = jQuery("#main").has(jQuery("#sndp, #first"));
230         same( simple.get(), q("main"), "Only adds elements once" );
231 });
232
233 test("andSelf()", function() {
234         expect(4);
235         same( jQuery("#en").siblings().andSelf().get(), q("sndp", "en", "sap"), "Check for siblings and self" );
236         same( jQuery("#foo").children().andSelf().get(), q("foo", "sndp", "en", "sap"), "Check for children and self" );
237         same( jQuery("#sndp, #en").parent().andSelf().get(), q("foo","sndp","en"), "Check for parent and self" );
238         same( jQuery("#groups").parents("p, div").andSelf().get(), q("main", "ap", "groups"), "Check for parents and self" );
239 });
240
241 test("siblings([String])", function() {
242         expect(5);
243         same( jQuery("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" );
244         same( jQuery("#sndp").siblings(":has(code)").get(), q("sap"), "Check for filtered siblings (has code child element)" );
245         same( jQuery("#sndp").siblings(":has(a)").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
246         same( jQuery("#foo").siblings("form, b").get(), q("form", "floatTest", "lengthtest", "name-tests", "testForm"), "Check for multiple filters" );
247         var set = q("sndp", "en", "sap");
248         same( jQuery("#en, #sndp").siblings().get(), set, "Check for unique results from siblings" );
249 });
250
251 test("children([String])", function() {
252         expect(3);
253         same( jQuery("#foo").children().get(), q("sndp", "en", "sap"), "Check for children" );
254         same( jQuery("#foo").children(":has(code)").get(), q("sndp", "sap"), "Check for filtered children" );
255         same( jQuery("#foo").children("#en, #sap").get(), q("en", "sap"), "Check for multiple filters" );
256 });
257
258 test("parent([String])", function() {
259         expect(5);
260         equals( jQuery("#groups").parent()[0].id, "ap", "Simple parent check" );
261         equals( jQuery("#groups").parent("p")[0].id, "ap", "Filtered parent check" );
262         equals( jQuery("#groups").parent("div").length, 0, "Filtered parent check, no match" );
263         equals( jQuery("#groups").parent("div, p")[0].id, "ap", "Check for multiple filters" );
264         same( jQuery("#en, #sndp").parent().get(), q("foo"), "Check for unique results from parent" );
265 });
266
267 test("parents([String])", function() {
268         expect(5);
269         equals( jQuery("#groups").parents()[0].id, "ap", "Simple parents check" );
270         equals( jQuery("#groups").parents("p")[0].id, "ap", "Filtered parents check" );
271         equals( jQuery("#groups").parents("div")[0].id, "main", "Filtered parents check2" );
272         same( jQuery("#groups").parents("p, div").get(), q("ap", "main"), "Check for multiple filters" );
273         same( jQuery("#en, #sndp").parents().get(), q("foo", "main", "dl", "body", "html"), "Check for unique results from parents" );
274 });
275
276 test("parentsUntil([String])", function() {
277         expect(9);
278
279         var parents = jQuery("#groups").parents();
280
281         same( jQuery("#groups").parentsUntil().get(), parents.get(), "parentsUntil with no selector (nextAll)" );
282         same( jQuery("#groups").parentsUntil(".foo").get(), parents.get(), "parentsUntil with invalid selector (nextAll)" );
283         same( jQuery("#groups").parentsUntil("#html").get(), parents.not(':last').get(), "Simple parentsUntil check" );
284         equals( jQuery("#groups").parentsUntil("#ap").length, 0, "Simple parentsUntil check" );
285         same( jQuery("#groups").parentsUntil("#html, #body").get(), parents.slice( 0, 3 ).get(), "Less simple parentsUntil check" );
286         same( jQuery("#groups").parentsUntil("#html", "div").get(), jQuery("#main").get(), "Filtered parentsUntil check" );
287         same( jQuery("#groups").parentsUntil("#html", "p,div,dl").get(), parents.slice( 0, 3 ).get(), "Multiple-filtered parentsUntil check" );
288         equals( jQuery("#groups").parentsUntil("#html", "span").length, 0, "Filtered parentsUntil check, no match" );
289         same( jQuery("#groups, #ap").parentsUntil("#html", "p,div,dl").get(), parents.slice( 0, 3 ).get(), "Multi-source, multiple-filtered parentsUntil check" );
290 });
291
292 test("next([String])", function() {
293         expect(4);
294         equals( jQuery("#ap").next()[0].id, "foo", "Simple next check" );
295         equals( jQuery("#ap").next("div")[0].id, "foo", "Filtered next check" );
296         equals( jQuery("#ap").next("p").length, 0, "Filtered next check, no match" );
297         equals( jQuery("#ap").next("div, p")[0].id, "foo", "Multiple filters" );
298 });
299
300 test("prev([String])", function() {
301         expect(4);
302         equals( jQuery("#foo").prev()[0].id, "ap", "Simple prev check" );
303         equals( jQuery("#foo").prev("p")[0].id, "ap", "Filtered prev check" );
304         equals( jQuery("#foo").prev("div").length, 0, "Filtered prev check, no match" );
305         equals( jQuery("#foo").prev("p, div")[0].id, "ap", "Multiple filters" );
306 });
307
308 test("nextAll([String])", function() {
309         expect(4);
310
311         var elems = jQuery('#form').children();
312
313         same( jQuery("#label-for").nextAll().get(), elems.not(':first').get(), "Simple nextAll check" );
314         same( jQuery("#label-for").nextAll('input').get(), elems.not(':first').filter('input').get(), "Filtered nextAll check" );
315         same( jQuery("#label-for").nextAll('input,select').get(), elems.not(':first').filter('input,select').get(), "Multiple-filtered nextAll check" );
316         same( jQuery("#label-for, #hidden1").nextAll('input,select').get(), elems.not(':first').filter('input,select').get(), "Multi-source, multiple-filtered nextAll check" );
317 });
318
319 test("prevAll([String])", function() {
320         expect(4);
321
322         var elems = jQuery( jQuery('#form').children().slice(0, 12).get().reverse() );
323
324         same( jQuery("#area1").prevAll().get(), elems.get(), "Simple prevAll check" );
325         same( jQuery("#area1").prevAll('input').get(), elems.filter('input').get(), "Filtered prevAll check" );
326         same( jQuery("#area1").prevAll('input,select').get(), elems.filter('input,select').get(), "Multiple-filtered prevAll check" );
327         same( jQuery("#area1, #hidden1").prevAll('input,select').get(), elems.filter('input,select').get(), "Multi-source, multiple-filtered prevAll check" );
328 });
329
330 test("nextUntil([String])", function() {
331         expect(11);
332
333         var elems = jQuery('#form').children().slice( 2, 12 );
334
335         same( jQuery("#text1").nextUntil().get(), jQuery("#text1").nextAll().get(), "nextUntil with no selector (nextAll)" );
336         same( jQuery("#text1").nextUntil(".foo").get(), jQuery("#text1").nextAll().get(), "nextUntil with invalid selector (nextAll)" );
337         same( jQuery("#text1").nextUntil("#area1").get(), elems.get(), "Simple nextUntil check" );
338         equals( jQuery("#text1").nextUntil("#text2").length, 0, "Simple nextUntil check" );
339         same( jQuery("#text1").nextUntil("#area1, #radio1").get(), jQuery("#text1").next().get(), "Less simple nextUntil check" );
340         same( jQuery("#text1").nextUntil("#area1", "input").get(), elems.not("button").get(), "Filtered nextUntil check" );
341         same( jQuery("#text1").nextUntil("#area1", "button").get(), elems.not("input").get(), "Filtered nextUntil check" );
342         same( jQuery("#text1").nextUntil("#area1", "button,input").get(), elems.get(), "Multiple-filtered nextUntil check" );
343         equals( jQuery("#text1").nextUntil("#area1", "div").length, 0, "Filtered nextUntil check, no match" );
344         same( jQuery("#text1, #hidden1").nextUntil("#area1", "button,input").get(), elems.get(), "Multi-source, multiple-filtered nextUntil check" );
345
346         same( jQuery("#text1").nextUntil("[class=foo]").get(), jQuery("#text1").nextAll().get(), "Non-element nodes must be skipped, since they have no attributes" );
347 });
348
349 test("prevUntil([String])", function() {
350         expect(10);
351
352         var elems = jQuery("#area1").prevAll();
353
354         same( jQuery("#area1").prevUntil().get(), elems.get(), "prevUntil with no selector (prevAll)" );
355         same( jQuery("#area1").prevUntil(".foo").get(), elems.get(), "prevUntil with invalid selector (prevAll)" );
356         same( jQuery("#area1").prevUntil("label").get(), elems.not(':last').get(), "Simple prevUntil check" );
357         equals( jQuery("#area1").prevUntil("#button").length, 0, "Simple prevUntil check" );
358         same( jQuery("#area1").prevUntil("label, #search").get(), jQuery("#area1").prev().get(), "Less simple prevUntil check" );
359         same( jQuery("#area1").prevUntil("label", "input").get(), elems.not(':last').not("button").get(), "Filtered prevUntil check" );
360         same( jQuery("#area1").prevUntil("label", "button").get(), elems.not(':last').not("input").get(), "Filtered prevUntil check" );
361         same( jQuery("#area1").prevUntil("label", "button,input").get(), elems.not(':last').get(), "Multiple-filtered prevUntil check" );
362         equals( jQuery("#area1").prevUntil("label", "div").length, 0, "Filtered prevUntil check, no match" );
363         same( jQuery("#area1, #hidden1").prevUntil("label", "button,input").get(), elems.not(':last').get(), "Multi-source, multiple-filtered prevUntil check" );
364 });
365
366 test("contents()", function() {
367         expect(12);
368         equals( jQuery("#ap").contents().length, 9, "Check element contents" );
369         ok( jQuery("#iframe").contents()[0], "Check existance of IFrame document" );
370         var ibody = jQuery("#loadediframe").contents()[0].body;
371         ok( ibody, "Check existance of IFrame body" );
372
373         equals( jQuery("span", ibody).text(), "span text", "Find span in IFrame and check its text" );
374
375         jQuery(ibody).append("<div>init text</div>");
376         equals( jQuery("div", ibody).length, 2, "Check the original div and the new div are in IFrame" );
377
378         equals( jQuery("div:last", ibody).text(), "init text", "Add text to div in IFrame" );
379
380         jQuery("div:last", ibody).text("div text");
381         equals( jQuery("div:last", ibody).text(), "div text", "Add text to div in IFrame" );
382
383         jQuery("div:last", ibody).remove();
384         equals( jQuery("div", ibody).length, 1, "Delete the div and check only one div left in IFrame" );
385
386         equals( jQuery("div", ibody).text(), "span text", "Make sure the correct div is still left after deletion in IFrame" );
387
388         jQuery("<table/>", ibody).append("<tr><td>cell</td></tr>").appendTo(ibody);
389         jQuery("table", ibody).remove();
390         equals( jQuery("div", ibody).length, 1, "Check for JS error on add and delete of a table in IFrame" );
391
392         // using contents will get comments regular, text, and comment nodes
393         var c = jQuery("#nonnodes").contents().contents();
394         equals( c.length, 1, "Check node,textnode,comment contents is just one" );
395         equals( c[0].nodeValue, "hi", "Check node,textnode,comment contents is just the one from span" );
396 });
397
398 test("add(String|Element|Array|undefined)", function() {
399         expect(16);
400         same( jQuery("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" );
401         same( jQuery("#sndp").add( jQuery("#en")[0] ).add( jQuery("#sap") ).get(), q("sndp", "en", "sap"), "Check elements from document" );
402         ok( jQuery([]).add(jQuery("#form")[0].elements).length >= 13, "Check elements from array" );
403
404         // For the time being, we're discontinuing support for jQuery(form.elements) since it's ambiguous in IE
405         // use jQuery([]).add(form.elements) instead.
406         //equals( jQuery([]).add(jQuery("#form")[0].elements).length, jQuery(jQuery("#form")[0].elements).length, "Array in constructor must equals array in add()" );
407
408         var divs = jQuery("<div/>").add("#sndp");
409         ok( !divs[0].parentNode, "Make sure the first element is still the disconnected node." );
410
411         divs = jQuery("<div>test</div>").add("#sndp");
412         equals( divs[0].parentNode.nodeType, 11, "Make sure the first element is still the disconnected node." );
413
414         divs = jQuery("#sndp").add("<div/>");
415         ok( !divs[1].parentNode, "Make sure the first element is still the disconnected node." );
416
417         var tmp = jQuery("<div/>");
418
419         var x = jQuery([]).add(jQuery("<p id='x1'>xxx</p>").appendTo(tmp)).add(jQuery("<p id='x2'>xxx</p>").appendTo(tmp));
420         equals( x[0].id, "x1", "Check on-the-fly element1" );
421         equals( x[1].id, "x2", "Check on-the-fly element2" );
422
423         var x = jQuery([]).add(jQuery("<p id='x1'>xxx</p>").appendTo(tmp)[0]).add(jQuery("<p id='x2'>xxx</p>").appendTo(tmp)[0]);
424         equals( x[0].id, "x1", "Check on-the-fly element1" );
425         equals( x[1].id, "x2", "Check on-the-fly element2" );
426
427         var x = jQuery([]).add(jQuery("<p id='x1'>xxx</p>")).add(jQuery("<p id='x2'>xxx</p>"));
428         equals( x[0].id, "x1", "Check on-the-fly element1" );
429         equals( x[1].id, "x2", "Check on-the-fly element2" );
430
431         var x = jQuery([]).add("<p id='x1'>xxx</p>").add("<p id='x2'>xxx</p>");
432         equals( x[0].id, "x1", "Check on-the-fly element1" );
433         equals( x[1].id, "x2", "Check on-the-fly element2" );
434
435         var notDefined;
436         equals( jQuery([]).add(notDefined).length, 0, "Check that undefined adds nothing" );
437
438         ok( jQuery([]).add( document.getElementById('form') ).length >= 13, "Add a form (adds the elements)" );
439 });
440
441 test("add(String, Context)", function() {
442         expect(6);
443
444         equals( jQuery(document).add("#form").length, 2, "Make sure that using regular context document still works." );
445         equals( jQuery(document.body).add("#form").length, 2, "Using a body context." );
446         equals( jQuery(document.body).add("#html").length, 1, "Using a body context." );
447
448         equals( jQuery(document).add("#form", document).length, 2, "Use a passed in document context." );
449         equals( jQuery(document).add("#form", document.body).length, 2, "Use a passed in body context." );
450         equals( jQuery(document).add("#html", document.body).length, 1, "Use a passed in body context." );
451 });