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