9a1cecbe4225d644a6031b6958ea1e6d49d352c1
[jquery.git] / test / unit / core.js
1 module("core");
2
3 test("Basic requirements", function() {
4         expect(7);
5         ok( Array.prototype.push, "Array.push()" );
6         ok( Function.prototype.apply, "Function.apply()" );
7         ok( document.getElementById, "getElementById" );
8         ok( document.getElementsByTagName, "getElementsByTagName" );
9         ok( RegExp, "RegExp" );
10         ok( jQuery, "jQuery" );
11         ok( $, "$" );
12 });
13
14 test("jQuery()", function() {
15         expect(8);
16
17         var main = jQuery("#main");
18         isSet( jQuery("div p", main).get(), q("sndp", "en", "sap"), "Basic selector with jQuery object as context" );
19
20 /*
21         // disabled since this test was doing nothing. i tried to fix it but i'm not sure
22         // what the expected behavior should even be. FF returns "\n" for the text node
23         // make sure this is handled
24         var crlfContainer = jQuery('<p>\r\n</p>');
25         var x = crlfContainer.contents().get(0).nodeValue;
26         equals( x, what???, "Check for \\r and \\n in jQuery()" );
27 */
28
29         /* // Disabled until we add this functionality in
30         var pass = true;
31         try {
32                 jQuery("<div>Testing</div>").appendTo(document.getElementById("iframe").contentDocument.body);
33         } catch(e){
34                 pass = false;
35         }
36         ok( pass, "jQuery('&lt;tag&gt;') needs optional document parameter to ease cross-frame DOM wrangling, see #968" );*/
37
38         var code = jQuery("<code/>");
39         equals( code.length, 1, "Correct number of elements generated for code" );
40         var img = jQuery("<img/>");
41         equals( img.length, 1, "Correct number of elements generated for img" );
42         var div = jQuery("<div/><hr/><code/><b/>");
43         equals( div.length, 4, "Correct number of elements generated for div hr code b" );
44
45         // can actually yield more than one, when iframes are included, the window is an array as well
46         equals( jQuery(window).length, 1, "Correct number of elements generated for window" );
47
48         equals( jQuery(document).length, 1, "Correct number of elements generated for document" );
49
50         equals( jQuery([1,2,3]).get(1), 2, "Test passing an array to the factory" );
51
52         equals( jQuery(document.body).get(0), jQuery('body').get(0), "Test passing an html node to the factory" );
53 });
54
55 test("selector state", function() {
56         expect(26);
57
58         var test;
59         
60         test = jQuery();
61         equals( test.selector, "", "Empty jQuery Selector" );
62         equals( test.context, document, "Empty jQuery Context" );
63         
64         test = jQuery(document);
65         equals( test.selector, "", "Document Selector" );
66         equals( test.context, document, "Document Context" );
67         
68         test = jQuery(document.body);
69         equals( test.selector, "", "Body Selector" );
70         equals( test.context, document.body, "Body Context" );
71         
72         test = jQuery("#main");
73         equals( test.selector, "#main", "#main Selector" );
74         equals( test.context, document, "#main Context" );
75         
76         test = jQuery("#main", document);
77         equals( test.selector, "#main", "#main Selector" );
78         equals( test.context, document, "#main Context" );
79         
80         test = jQuery("#main", document.body);
81         equals( test.selector, "#main", "#main Selector" );
82         equals( test.context, document.body, "#main Context" );
83         
84         test = jQuery(document.body).find("#main");
85         equals( test.selector, "#main", "#main find Selector" );
86         equals( test.context, document.body, "#main find Context" );
87
88         test = jQuery("#main").filter("div");
89         equals( test.selector, "#main.filter(div)", "#main filter Selector" );
90         equals( test.context, document, "#main filter Context" );
91         
92         test = jQuery("#main").not("div");
93         equals( test.selector, "#main.not(div)", "#main not Selector" );
94         equals( test.context, document, "#main not Context" );
95         
96         test = jQuery("#main").filter("div").not("div");
97         equals( test.selector, "#main.filter(div).not(div)", "#main filter, not Selector" );
98         equals( test.context, document, "#main filter, not Context" );
99         
100         test = jQuery("#main").filter("div").not("div").end();
101         equals( test.selector, "#main.filter(div)", "#main filter, not, end Selector" );
102         equals( test.context, document, "#main filter, not, end Context" );
103         
104         test = jQuery("#main").parent("body");
105         equals( test.selector, "#main.parent(body)", "#main parent Selector" );
106         equals( test.context, document, "#main parent Context" );
107         
108         test = jQuery("#main").eq(0);
109         equals( test.selector, "#main.slice(0,1)", "#main eq Selector" );
110         equals( test.context, document, "#main eq Context" );
111 });
112
113 test("browser", function() {
114         expect(13);
115         var browsers = {
116                 //Internet Explorer
117                 "Mozilla/5.0 (Windows; U; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)": "6.0",
118                 "Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)": "7.0",
119                 /** Failing #1876
120                  * "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.50727; .NET CLR 1.1.4322; .NET CLR 3.0.04506.30)": "7.0",
121                  */
122                 //Browsers with Gecko engine
123                 //Mozilla
124                 "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko/20050915" : "1.7.12",
125                 //Firefox
126                 "Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3": "1.8.1.3",
127                 //Netscape
128                 "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20070321 Netscape/8.1.3" : "1.7.5",
129                 //Flock
130                 "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.11) Gecko/20070321 Firefox/1.5.0.11 Flock/0.7.12" : "1.8.0.11",
131                 //Opera browser
132                 "Opera/9.20 (X11; Linux x86_64; U; en)": "9.20",
133                 "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 9.20" : "9.20",
134                 "Mozilla/5.0 (Windows NT 5.1; U; pl; rv:1.8.0) Gecko/20060728 Firefox/1.5.0 Opera 9.20": "9.20",
135                 //WebKit engine
136                 "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; sv-se) AppleWebKit/418.9 (KHTML, like Gecko) Safari/419.3": "418.9",
137                 "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/418.8 (KHTML, like Gecko) Safari/419.3" : "418.8",
138                 "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; sv-se) AppleWebKit/312.8 (KHTML, like Gecko) Safari/312.5": "312.8",
139                 //Other user agent string
140                 "Other browser's user agent 1.0":null
141         };
142         for (var i in browsers) {
143                 var v = i.toLowerCase().match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ); // RegEx from Core jQuery.browser.version check
144                 version = v ? v[1] : null;
145                 equals( version, browsers[i], "Checking UA string" );
146         }
147 });
148
149 test("noConflict", function() {
150         expect(6);
151
152         var $$ = jQuery;
153
154         equals( jQuery, jQuery.noConflict(), "noConflict returned the jQuery object" );
155         equals( jQuery, $$, "Make sure jQuery wasn't touched." );
156         equals( $, original$, "Make sure $ was reverted." );
157
158         jQuery = $ = $$;
159
160         equals( jQuery.noConflict(true), $$, "noConflict returned the jQuery object" );
161         equals( jQuery, originaljQuery, "Make sure jQuery was reverted." );
162         equals( $, original$, "Make sure $ was reverted." );
163
164         jQuery = $$;
165 });
166
167 test("isFunction", function() {
168         expect(19);
169
170         // Make sure that false values return false
171         ok( !jQuery.isFunction(), "No Value" );
172         ok( !jQuery.isFunction( null ), "null Value" );
173         ok( !jQuery.isFunction( undefined ), "undefined Value" );
174         ok( !jQuery.isFunction( "" ), "Empty String Value" );
175         ok( !jQuery.isFunction( 0 ), "0 Value" );
176
177         // Check built-ins
178         // Safari uses "(Internal Function)"
179         ok( jQuery.isFunction(String), "String Function("+String+")" );
180         ok( jQuery.isFunction(Array), "Array Function("+Array+")" );
181         ok( jQuery.isFunction(Object), "Object Function("+Object+")" );
182         ok( jQuery.isFunction(Function), "Function Function("+Function+")" );
183
184         // When stringified, this could be misinterpreted
185         var mystr = "function";
186         ok( !jQuery.isFunction(mystr), "Function String" );
187
188         // When stringified, this could be misinterpreted
189         var myarr = [ "function" ];
190         ok( !jQuery.isFunction(myarr), "Function Array" );
191
192         // When stringified, this could be misinterpreted
193         var myfunction = { "function": "test" };
194         ok( !jQuery.isFunction(myfunction), "Function Object" );
195
196         // Make sure normal functions still work
197         var fn = function(){};
198         ok( jQuery.isFunction(fn), "Normal Function" );
199
200         var obj = document.createElement("object");
201
202         // Firefox says this is a function
203         ok( !jQuery.isFunction(obj), "Object Element" );
204
205         // IE says this is an object
206         // Since 1.3, this isn't supported (#2968)
207         //ok( jQuery.isFunction(obj.getAttribute), "getAttribute Function" );
208
209         var nodes = document.body.childNodes;
210
211         // Safari says this is a function
212         ok( !jQuery.isFunction(nodes), "childNodes Property" );
213
214         var first = document.body.firstChild;
215
216         // Normal elements are reported ok everywhere
217         ok( !jQuery.isFunction(first), "A normal DOM Element" );
218
219         var input = document.createElement("input");
220         input.type = "text";
221         document.body.appendChild( input );
222
223         // IE says this is an object
224         // Since 1.3, this isn't supported (#2968)
225         //ok( jQuery.isFunction(input.focus), "A default function property" );
226
227         document.body.removeChild( input );
228
229         var a = document.createElement("a");
230         a.href = "some-function";
231         document.body.appendChild( a );
232
233         // This serializes with the word 'function' in it
234         ok( !jQuery.isFunction(a), "Anchor Element" );
235
236         document.body.removeChild( a );
237
238         // Recursive function calls have lengths and array-like properties
239         function callme(callback){
240                 function fn(response){
241                         callback(response);
242                 }
243
244                 ok( jQuery.isFunction(fn), "Recursive Function Call" );
245
246                 fn({ some: "data" });
247         };
248
249         callme(function(){
250                 callme(function(){});
251         });
252 });
253
254 var foo = false;
255
256 test("jQuery('html')", function() {
257         expect(6);
258
259         reset();
260         foo = false;
261         var s = jQuery("<script>foo='test';</script>")[0];
262         ok( s, "Creating a script" );
263         ok( !foo, "Make sure the script wasn't executed prematurely" );
264         jQuery("body").append("<script>foo='test';</script>");
265         ok( foo, "Executing a scripts contents in the right context" );
266
267         reset();
268         ok( jQuery("<link rel='stylesheet'/>")[0], "Creating a link" );
269
270         reset();
271
272         var j = jQuery("<span>hi</span> there <!-- mon ami -->");
273         ok( j.length >= 2, "Check node,textnode,comment creation (some browsers delete comments)" );
274
275         ok( !jQuery("<option>test</option>")[0].selected, "Make sure that options are auto-selected #2050" );
276 });
277
278 test("jQuery('html', context)", function() {
279         expect(1);
280
281         var $div = jQuery("<div/>");
282         var $span = jQuery("<span/>", $div);
283         equals($span.length, 1, "Verify a span created with a div context works, #1763");
284 });
285
286 if ( !isLocal ) {
287 test("jQuery(selector, xml).text(str) - Loaded via XML document", function() {
288         expect(2);
289         stop();
290         jQuery.get('data/dashboard.xml', function(xml) {
291                 // tests for #1419 where IE was a problem
292                 equals( jQuery("tab:first", xml).text(), "blabla", "Verify initial text correct" );
293                 jQuery("tab:first", xml).text("newtext");
294                 equals( jQuery("tab:first", xml).text(), "newtext", "Verify new text correct" );
295                 start();
296         });
297 });
298 }
299
300 test("length", function() {
301         expect(1);
302         equals( jQuery("p").length, 6, "Get Number of Elements Found" );
303 });
304
305 test("size()", function() {
306         expect(1);
307         equals( jQuery("p").size(), 6, "Get Number of Elements Found" );
308 });
309
310 test("get()", function() {
311         expect(1);
312         isSet( jQuery("p").get(), q("firstp","ap","sndp","en","sap","first"), "Get All Elements" );
313 });
314
315 test("get(Number)", function() {
316         expect(1);
317         equals( jQuery("p").get(0), document.getElementById("firstp"), "Get A Single Element" );
318 });
319
320 test("add(String|Element|Array|undefined)", function() {
321         expect(12);
322         isSet( jQuery("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" );
323         isSet( jQuery("#sndp").add( jQuery("#en")[0] ).add( jQuery("#sap") ).get(), q("sndp", "en", "sap"), "Check elements from document" );
324         ok( jQuery([]).add(jQuery("#form")[0].elements).length >= 13, "Check elements from array" );
325
326         // For the time being, we're discontinuing support for jQuery(form.elements) since it's ambiguous in IE
327         // use jQuery([]).add(form.elements) instead.
328         //equals( jQuery([]).add(jQuery("#form")[0].elements).length, jQuery(jQuery("#form")[0].elements).length, "Array in constructor must equals array in add()" );
329
330         var x = jQuery([]).add(jQuery("<p id='x1'>xxx</p>")).add(jQuery("<p id='x2'>xxx</p>"));
331         equals( x[0].id, "x1", "Check on-the-fly element1" );
332         equals( x[1].id, "x2", "Check on-the-fly element2" );
333
334         var x = jQuery([]).add("<p id='x1'>xxx</p>").add("<p id='x2'>xxx</p>");
335         equals( x[0].id, "x1", "Check on-the-fly element1" );
336         equals( x[1].id, "x2", "Check on-the-fly element2" );
337
338         var notDefined;
339         equals( jQuery([]).add(notDefined).length, 0, "Check that undefined adds nothing" );
340
341         // Added after #2811
342         equals( jQuery([]).add([window,document,document.body,document]).length, 3, "Pass an array" );
343         equals( jQuery(document).add(document).length, 1, "Check duplicated elements" );
344         equals( jQuery(window).add(window).length, 1, "Check duplicated elements using the window" );
345         ok( jQuery([]).add( document.getElementById('form') ).length >= 13, "Add a form (adds the elements)" );
346 });
347
348 test("each(Function)", function() {
349         expect(1);
350         var div = jQuery("div");
351         div.each(function(){this.foo = 'zoo';});
352         var pass = true;
353         for ( var i = 0; i < div.size(); i++ ) {
354                 if ( div.get(i).foo != "zoo" ) pass = false;
355         }
356         ok( pass, "Execute a function, Relative" );
357 });
358
359 test("index(Object)", function() {
360         expect(10);
361
362         var elements = jQuery([window, document]),
363                 inputElements = jQuery('#radio1,#radio2,#check1,#check2');
364
365         equals( elements.index(window), 0, "Check for index of elements" );
366         equals( elements.index(document), 1, "Check for index of elements" );
367         equals( inputElements.index(document.getElementById('radio1')), 0, "Check for index of elements" );
368         equals( inputElements.index(document.getElementById('radio2')), 1, "Check for index of elements" );
369         equals( inputElements.index(document.getElementById('check1')), 2, "Check for index of elements" );
370         equals( inputElements.index(document.getElementById('check2')), 3, "Check for index of elements" );
371         equals( inputElements.index(window), -1, "Check for not found index" );
372         equals( inputElements.index(document), -1, "Check for not found index" );
373
374         // enabled since [5500]
375         equals( elements.index( elements ), 0, "Pass in a jQuery object" );
376         equals( elements.index( elements.eq(1) ), 1, "Pass in a jQuery object" );
377 });
378
379 test("attr(String)", function() {
380         expect(26);
381         equals( jQuery('#text1').attr('value'), "Test", 'Check for value attribute' );
382         equals( jQuery('#text1').attr('value', "Test2").attr('defaultValue'), "Test", 'Check for defaultValue attribute' );
383         equals( jQuery('#text1').attr('type'), "text", 'Check for type attribute' );
384         equals( jQuery('#radio1').attr('type'), "radio", 'Check for type attribute' );
385         equals( jQuery('#check1').attr('type'), "checkbox", 'Check for type attribute' );
386         equals( jQuery('#simon1').attr('rel'), "bookmark", 'Check for rel attribute' );
387         equals( jQuery('#google').attr('title'), "Google!", 'Check for title attribute' );
388         equals( jQuery('#mark').attr('hreflang'), "en", 'Check for hreflang attribute' );
389         equals( jQuery('#en').attr('lang'), "en", 'Check for lang attribute' );
390         equals( jQuery('#simon').attr('class'), "blog link", 'Check for class attribute' );
391         equals( jQuery('#name').attr('name'), "name", 'Check for name attribute' );
392         equals( jQuery('#text1').attr('name'), "action", 'Check for name attribute' );
393         ok( jQuery('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' );
394         equals( jQuery('#text1').attr('maxlength'), '30', 'Check for maxlength attribute' );
395         equals( jQuery('#text1').attr('maxLength'), '30', 'Check for maxLength attribute' );
396         equals( jQuery('#area1').attr('maxLength'), '30', 'Check for maxLength attribute' );
397         equals( jQuery('#select2').attr('selectedIndex'), 3, 'Check for selectedIndex attribute' );
398         equals( jQuery('#foo').attr('nodeName'), 'DIV', 'Check for nodeName attribute' );
399         equals( jQuery('#foo').attr('tagName'), 'DIV', 'Check for tagName attribute' );
400
401         jQuery('<a id="tAnchor5"></a>').attr('href', '#5').appendTo('#main'); // using innerHTML in IE causes href attribute to be serialized to the full path
402         equals( jQuery('#tAnchor5').attr('href'), "#5", 'Check for non-absolute href (an anchor)' );
403
404
405         // Related to [5574] and [5683]
406         var body = document.body, $body = jQuery(body);
407
408         ok( $body.attr('foo') === undefined, 'Make sure that a non existent attribute returns undefined' );
409         ok( $body.attr('nextSibling') === null, 'Make sure a null expando returns null' );
410         
411         body.setAttribute('foo', 'baz');
412         equals( $body.attr('foo'), 'baz', 'Make sure the dom attribute is retrieved when no expando is found' );
413         
414         body.foo = 'bar';
415         equals( $body.attr('foo'), 'bar', 'Make sure the expando is preferred over the dom attribute' );
416         
417         $body.attr('foo','cool');
418         equals( $body.attr('foo'), 'cool', 'Make sure that setting works well when both expando and dom attribute are available' );
419         
420         body.foo = undefined;
421         ok( $body.attr('foo') === undefined, 'Make sure the expando is preferred over the dom attribute, even if undefined' );
422         
423         body.removeAttribute('foo'); // Cleanup
424 });
425
426 if ( !isLocal ) {
427         test("attr(String) in XML Files", function() {
428                 expect(2);
429                 stop();
430                 jQuery.get("data/dashboard.xml", function(xml) {
431                         equals( jQuery("locations", xml).attr("class"), "foo", "Check class attribute in XML document" );
432                         equals( jQuery("location", xml).attr("for"), "bar", "Check for attribute in XML document" );
433                         start();
434                 });
435         });
436 }
437
438 test("attr(String, Function)", function() {
439         expect(2);
440         equals( jQuery('#text1').attr('value', function() { return this.id })[0].value, "text1", "Set value from id" );
441         equals( jQuery('#text1').attr('title', function(i) { return i }).attr('title'), "0", "Set value with an index");
442 });
443
444 test("attr(Hash)", function() {
445         expect(1);
446         var pass = true;
447         jQuery("div").attr({foo: 'baz', zoo: 'ping'}).each(function(){
448                 if ( this.getAttribute('foo') != "baz" && this.getAttribute('zoo') != "ping" ) pass = false;
449         });
450         ok( pass, "Set Multiple Attributes" );
451 });
452
453 test("attr(String, Object)", function() {
454         expect(19);
455         var div = jQuery("div").attr("foo", "bar");
456                 fail = false;
457         for ( var i = 0; i < div.size(); i++ ) {
458                 if ( div.get(i).getAttribute('foo') != "bar" ){
459                         fail = i;
460                         break;
461                 }
462         }
463         equals( fail, false, "Set Attribute, the #"+fail+" element didn't get the attribute 'foo'" );
464
465         ok( jQuery("#foo").attr({"width": null}), "Try to set an attribute to nothing" );
466
467         jQuery("#name").attr('name', 'something');
468         equals( jQuery("#name").attr('name'), 'something', 'Set name attribute' );
469         jQuery("#check2").attr('checked', true);
470         equals( document.getElementById('check2').checked, true, 'Set checked attribute' );
471         jQuery("#check2").attr('checked', false);
472         equals( document.getElementById('check2').checked, false, 'Set checked attribute' );
473         jQuery("#text1").attr('readonly', true);
474         equals( document.getElementById('text1').readOnly, true, 'Set readonly attribute' );
475         jQuery("#text1").attr('readonly', false);
476         equals( document.getElementById('text1').readOnly, false, 'Set readonly attribute' );
477         jQuery("#name").attr('maxlength', '5');
478         equals( document.getElementById('name').maxLength, '5', 'Set maxlength attribute' );
479         jQuery("#name").attr('maxLength', '10');
480         equals( document.getElementById('name').maxLength, '10', 'Set maxlength attribute' );
481
482         // for #1070
483         jQuery("#name").attr('someAttr', '0');
484         equals( jQuery("#name").attr('someAttr'), '0', 'Set attribute to a string of "0"' );
485         jQuery("#name").attr('someAttr', 0);
486         equals( jQuery("#name").attr('someAttr'), 0, 'Set attribute to the number 0' );
487         jQuery("#name").attr('someAttr', 1);
488         equals( jQuery("#name").attr('someAttr'), 1, 'Set attribute to the number 1' );
489
490         // using contents will get comments regular, text, and comment nodes
491         var j = jQuery("#nonnodes").contents();
492
493         j.attr("name", "attrvalue");
494         equals( j.attr("name"), "attrvalue", "Check node,textnode,comment for attr" );
495         j.removeAttr("name");
496
497         reset();
498
499         var type = jQuery("#check2").attr('type');
500         var thrown = false;
501         try {
502                 jQuery("#check2").attr('type','hidden');
503         } catch(e) {
504                 thrown = true;
505         }
506         ok( thrown, "Exception thrown when trying to change type property" );
507         equals( type, jQuery("#check2").attr('type'), "Verify that you can't change the type of an input element" );
508
509         var check = document.createElement("input");
510         var thrown = true;
511         try {
512                 jQuery(check).attr('type','checkbox');
513         } catch(e) {
514                 thrown = false;
515         }
516         ok( thrown, "Exception thrown when trying to change type property" );
517         equals( "checkbox", jQuery(check).attr('type'), "Verify that you can change the type of an input element that isn't in the DOM" );
518         
519         var check = jQuery("<input />");
520         var thrown = true;
521         try {
522                 check.attr('type','checkbox');
523         } catch(e) {
524                 thrown = false;
525         }
526         ok( thrown, "Exception thrown when trying to change type property" );
527         equals( "checkbox", check.attr('type'), "Verify that you can change the type of an input element that isn't in the DOM" );
528 });
529
530 if ( !isLocal ) {
531         test("attr(String, Object) - Loaded via XML document", function() {
532                 expect(2);
533                 stop();
534                 jQuery.get('data/dashboard.xml', function(xml) {
535                         var titles = [];
536                         jQuery('tab', xml).each(function() {
537                                 titles.push(jQuery(this).attr('title'));
538                         });
539                         equals( titles[0], 'Location', 'attr() in XML context: Check first title' );
540                         equals( titles[1], 'Users', 'attr() in XML context: Check second title' );
541                         start();
542                 });
543         });
544 }
545
546 test("css(String|Hash)", function() {
547         expect(19);
548
549         equals( jQuery('#main').css("display"), 'none', 'Check for css property "display"');
550
551         ok( jQuery('#foo').is(':visible'), 'Modifying CSS display: Assert element is visible');
552         jQuery('#foo').css({display: 'none'});
553         ok( !jQuery('#foo').is(':visible'), 'Modified CSS display: Assert element is hidden');
554         jQuery('#foo').css({display: 'block'});
555         ok( jQuery('#foo').is(':visible'), 'Modified CSS display: Assert element is visible');
556
557         jQuery('#floatTest').css({styleFloat: 'right'});
558         equals( jQuery('#floatTest').css('styleFloat'), 'right', 'Modified CSS float using "styleFloat": Assert float is right');
559         jQuery('#floatTest').css({cssFloat: 'left'});
560         equals( jQuery('#floatTest').css('cssFloat'), 'left', 'Modified CSS float using "cssFloat": Assert float is left');
561         jQuery('#floatTest').css({'float': 'right'});
562         equals( jQuery('#floatTest').css('float'), 'right', 'Modified CSS float using "float": Assert float is right');
563         jQuery('#floatTest').css({'font-size': '30px'});
564         equals( jQuery('#floatTest').css('font-size'), '30px', 'Modified CSS font-size: Assert font-size is 30px');
565
566         jQuery.each("0,0.25,0.5,0.75,1".split(','), function(i, n) {
567                 jQuery('#foo').css({opacity: n});
568                 equals( jQuery('#foo').css('opacity'), parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a String" );
569                 jQuery('#foo').css({opacity: parseFloat(n)});
570                 equals( jQuery('#foo').css('opacity'), parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a Number" );
571         });
572         jQuery('#foo').css({opacity: ''});
573         equals( jQuery('#foo').css('opacity'), '1', "Assert opacity is 1 when set to an empty String" );
574 });
575
576 test("css(String, Object)", function() {
577         expect(21);
578         ok( jQuery('#foo').is(':visible'), 'Modifying CSS display: Assert element is visible');
579         jQuery('#foo').css('display', 'none');
580         ok( !jQuery('#foo').is(':visible'), 'Modified CSS display: Assert element is hidden');
581         jQuery('#foo').css('display', 'block');
582         ok( jQuery('#foo').is(':visible'), 'Modified CSS display: Assert element is visible');
583
584         jQuery('#floatTest').css('styleFloat', 'left');
585         equals( jQuery('#floatTest').css('styleFloat'), 'left', 'Modified CSS float using "styleFloat": Assert float is left');
586         jQuery('#floatTest').css('cssFloat', 'right');
587         equals( jQuery('#floatTest').css('cssFloat'), 'right', 'Modified CSS float using "cssFloat": Assert float is right');
588         jQuery('#floatTest').css('float', 'left');
589         equals( jQuery('#floatTest').css('float'), 'left', 'Modified CSS float using "float": Assert float is left');
590         jQuery('#floatTest').css('font-size', '20px');
591         equals( jQuery('#floatTest').css('font-size'), '20px', 'Modified CSS font-size: Assert font-size is 20px');
592
593         jQuery.each("0,0.25,0.5,0.75,1".split(','), function(i, n) {
594                 jQuery('#foo').css('opacity', n);
595                 equals( jQuery('#foo').css('opacity'), parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a String" );
596                 jQuery('#foo').css('opacity', parseFloat(n));
597                 equals( jQuery('#foo').css('opacity'), parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a Number" );
598         });
599         jQuery('#foo').css('opacity', '');
600         equals( jQuery('#foo').css('opacity'), '1', "Assert opacity is 1 when set to an empty String" );
601         // for #1438, IE throws JS error when filter exists but doesn't have opacity in it
602         if (jQuery.browser.msie) {
603                 jQuery('#foo').css("filter", "progid:DXImageTransform.Microsoft.Chroma(color='red');");
604         }
605         equals( jQuery('#foo').css('opacity'), '1', "Assert opacity is 1 when a different filter is set in IE, #1438" );
606
607         // using contents will get comments regular, text, and comment nodes
608         var j = jQuery("#nonnodes").contents();
609         j.css("padding-left", "1px");
610         equals( j.css("padding-left"), "1px", "Check node,textnode,comment css works" );
611
612         // opera sometimes doesn't update 'display' correctly, see #2037
613         jQuery("#t2037")[0].innerHTML = jQuery("#t2037")[0].innerHTML
614         equals( jQuery("#t2037 .hidden").css("display"), "none", "Make sure browser thinks it is hidden" );
615 });
616
617 test("jQuery.css(elem, 'height') doesn't clear radio buttons (bug #1095)", function () {
618         expect(4);
619
620         var $checkedtest = jQuery("#checkedtest");
621         // IE6 was clearing "checked" in jQuery.css(elem, "height");
622         jQuery.css($checkedtest[0], "height");
623         ok( !! jQuery(":radio:first", $checkedtest).attr("checked"), "Check first radio still checked." );
624         ok( ! jQuery(":radio:last", $checkedtest).attr("checked"), "Check last radio still NOT checked." );
625         ok( !! jQuery(":checkbox:first", $checkedtest).attr("checked"), "Check first checkbox still checked." );
626         ok( ! jQuery(":checkbox:last", $checkedtest).attr("checked"), "Check last checkbox still NOT checked." );
627 });
628
629 test("width()", function() {
630         expect(8);
631
632         var $div = jQuery("#nothiddendiv");
633         $div.width(30);
634         equals($div.width(), 30, "Test set to 30 correctly");
635         $div.width(-1); // handle negative numbers by ignoring #1599
636         equals($div.width(), 30, "Test negative width ignored");
637         $div.css("padding", "20px");
638         equals($div.width(), 30, "Test padding specified with pixels");
639         $div.css("border", "2px solid #fff");
640         equals($div.width(), 30, "Test border specified with pixels");
641         $div.css("padding", "2em");
642         equals($div.width(), 30, "Test padding specified with ems");
643         $div.css("border", "1em solid #fff");
644         //DISABLED - Opera 9.6 fails this test, returns 8
645         //equals($div.width(), 30, "Test border specified with ems");
646         $div.css("padding", "2%");
647         equals($div.width(), 30, "Test padding specified with percent");
648         $div.hide();
649         equals($div.width(), 30, "Test hidden div");
650
651         $div.css({ display: "", border: "", padding: "" });
652
653         jQuery("#nothiddendivchild").css({ padding: "3px", border: "2px solid #fff" });
654         equals(jQuery("#nothiddendivchild").width(), 20, "Test child width with border and padding");
655         jQuery("#nothiddendiv, #nothiddendivchild").css({ border: "", padding: "", width: "" });
656 });
657
658 test("height()", function() {
659         expect(7);
660
661         var $div = jQuery("#nothiddendiv");
662         $div.height(30);
663         equals($div.height(), 30, "Test set to 30 correctly");
664         $div.height(-1); // handle negative numbers by ignoring #1599
665         equals($div.height(), 30, "Test negative height ignored");
666         $div.css("padding", "20px");
667         equals($div.height(), 30, "Test padding specified with pixels");
668         $div.css("border", "2px solid #fff");
669         equals($div.height(), 30, "Test border specified with pixels");
670         $div.css("padding", "2em");
671         equals($div.height(), 30, "Test padding specified with ems");
672         $div.css("border", "1em solid #fff");
673         //DISABLED - Opera 9.6 fails this test, returns 8
674         //equals($div.height(), 30, "Test border specified with ems");
675         $div.css("padding", "2%");
676         equals($div.height(), 30, "Test padding specified with percent");
677         $div.hide();
678         equals($div.height(), 30, "Test hidden div");
679
680         $div.css({ display: "", border: "", padding: "", height: "1px" });
681 });
682
683 test("text()", function() {
684         expect(1);
685         var expected = "This link has class=\"blog\": Simon Willison's Weblog";
686         equals( jQuery('#sap').text(), expected, 'Check for merged text of more then one element.' );
687 });
688
689 test("wrap(String|Element)", function() {
690         expect(8);
691         var defaultText = 'Try them out:'
692         var result = jQuery('#first').wrap('<div class="red"><span></span></div>').text();
693         equals( defaultText, result, 'Check for wrapping of on-the-fly html' );
694         ok( jQuery('#first').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
695
696         reset();
697         var defaultText = 'Try them out:'
698         var result = jQuery('#first').wrap(document.getElementById('empty')).parent();
699         ok( result.is('ol'), 'Check for element wrapping' );
700         equals( result.text(), defaultText, 'Check for element wrapping' );
701
702         reset();
703         jQuery('#check1').click(function() {
704                 var checkbox = this;
705                 ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );
706                 jQuery(checkbox).wrap( '<div id="c1" style="display:none;"></div>' );
707                 ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );
708         }).click();
709
710         // using contents will get comments regular, text, and comment nodes
711         var j = jQuery("#nonnodes").contents();
712         j.wrap("<i></i>");
713         equals( jQuery("#nonnodes > i").length, 3, "Check node,textnode,comment wraps ok" );
714         equals( jQuery("#nonnodes > i").text(), j.text() + j[1].nodeValue, "Check node,textnode,comment wraps doesn't hurt text" );
715 });
716
717 test("wrapAll(String|Element)", function() {
718         expect(8);
719         var prev = jQuery("#firstp")[0].previousSibling;
720         var p = jQuery("#firstp,#first")[0].parentNode;
721         var result = jQuery('#firstp,#first').wrapAll('<div class="red"><div id="tmp"></div></div>');
722         equals( result.parent().length, 1, 'Check for wrapping of on-the-fly html' );
723         ok( jQuery('#first').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
724         ok( jQuery('#firstp').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
725         equals( jQuery("#first").parent().parent()[0].previousSibling, prev, "Correct Previous Sibling" );
726         equals( jQuery("#first").parent().parent()[0].parentNode, p, "Correct Parent" );
727
728         reset();
729         var prev = jQuery("#firstp")[0].previousSibling;
730         var p = jQuery("#first")[0].parentNode;
731         var result = jQuery('#firstp,#first').wrapAll(document.getElementById('empty'));
732         equals( jQuery("#first").parent()[0], jQuery("#firstp").parent()[0], "Same Parent" );
733         equals( jQuery("#first").parent()[0].previousSibling, prev, "Correct Previous Sibling" );
734         equals( jQuery("#first").parent()[0].parentNode, p, "Correct Parent" );
735 });
736
737 test("wrapInner(String|Element)", function() {
738         expect(6);
739         var num = jQuery("#first").children().length;
740         var result = jQuery('#first').wrapInner('<div class="red"><div id="tmp"></div></div>');
741         equals( jQuery("#first").children().length, 1, "Only one child" );
742         ok( jQuery("#first").children().is(".red"), "Verify Right Element" );
743         equals( jQuery("#first").children().children().children().length, num, "Verify Elements Intact" );
744
745         reset();
746         var num = jQuery("#first").children().length;
747         var result = jQuery('#first').wrapInner(document.getElementById('empty'));
748         equals( jQuery("#first").children().length, 1, "Only one child" );
749         ok( jQuery("#first").children().is("#empty"), "Verify Right Element" );
750         equals( jQuery("#first").children().children().length, num, "Verify Elements Intact" );
751 });
752
753 test("append(String|Element|Array&lt;Element&gt;|jQuery)", function() {
754         expect(21);
755         var defaultText = 'Try them out:'
756         var result = jQuery('#first').append('<b>buga</b>');
757         equals( result.text(), defaultText + 'buga', 'Check if text appending works' );
758         equals( jQuery('#select3').append('<option value="appendTest">Append Test</option>').find('option:last-child').attr('value'), 'appendTest', 'Appending html options to select element');
759
760         reset();
761         var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
762         jQuery('#sap').append(document.getElementById('first'));
763         equals( expected, jQuery('#sap').text(), "Check for appending of element" );
764
765         reset();
766         expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
767         jQuery('#sap').append([document.getElementById('first'), document.getElementById('yahoo')]);
768         equals( expected, jQuery('#sap').text(), "Check for appending of array of elements" );
769
770         reset();
771         expected = document.querySelectorAll ?
772                 "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:" :
773                 "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
774         jQuery('#sap').append(jQuery("#first, #yahoo"));
775         equals( expected, jQuery('#sap').text(), "Check for appending of jQuery object" );
776
777         reset();
778         jQuery("#sap").append( 5 );
779         ok( jQuery("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );
780
781         reset();
782         jQuery("#sap").append( " text with spaces " );
783         ok( jQuery("#sap")[0].innerHTML.match(/ text with spaces $/), "Check for appending text with spaces" );
784
785         reset();
786         ok( jQuery("#sap").append([]), "Check for appending an empty array." );
787         ok( jQuery("#sap").append(""), "Check for appending an empty string." );
788         ok( jQuery("#sap").append(document.getElementsByTagName("foo")), "Check for appending an empty nodelist." );
789
790         reset();
791         jQuery("#sap").append(document.getElementById('form'));
792         equals( jQuery("#sap>form").size(), 1, "Check for appending a form" ); // Bug #910
793
794         reset();
795         var pass = true;
796         try {
797                 jQuery( jQuery("#iframe")[0].contentWindow.document.body ).append("<div>test</div>");
798         } catch(e) {
799                 pass = false;
800         }
801
802         ok( pass, "Test for appending a DOM node to the contents of an IFrame" );
803
804         reset();
805         jQuery('<fieldset/>').appendTo('#form').append('<legend id="legend">test</legend>');
806         t( 'Append legend', '#legend', ['legend'] );
807
808         reset();
809         jQuery('#select1').append('<OPTION>Test</OPTION>');
810         equals( jQuery('#select1 option:last').text(), "Test", "Appending &lt;OPTION&gt; (all caps)" );
811
812         jQuery('#table').append('<colgroup></colgroup>');
813         ok( jQuery('#table colgroup').length, "Append colgroup" );
814
815         jQuery('#table colgroup').append('<col/>');
816         ok( jQuery('#table colgroup col').length, "Append col" );
817
818         reset();
819         jQuery('#table').append('<caption></caption>');
820         ok( jQuery('#table caption').length, "Append caption" );
821
822         reset();
823         jQuery('form:last')
824                 .append('<select id="appendSelect1"></select>')
825                 .append('<select id="appendSelect2"><option>Test</option></select>');
826
827         t( "Append Select", "#appendSelect1, #appendSelect2", ["appendSelect1", "appendSelect2"] );
828
829         // using contents will get comments regular, text, and comment nodes
830         var j = jQuery("#nonnodes").contents();
831         var d = jQuery("<div/>").appendTo("#nonnodes").append(j);
832         equals( jQuery("#nonnodes").length, 1, "Check node,textnode,comment append moved leaving just the div" );
833         ok( d.contents().length >= 2, "Check node,textnode,comment append works" );
834         d.contents().appendTo("#nonnodes");
835         d.remove();
836         ok( jQuery("#nonnodes").contents().length >= 2, "Check node,textnode,comment append cleanup worked" );
837 });
838
839 test("appendTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
840         expect(6);
841         var defaultText = 'Try them out:'
842         jQuery('<b>buga</b>').appendTo('#first');
843         equals( jQuery("#first").text(), defaultText + 'buga', 'Check if text appending works' );
844         equals( jQuery('<option value="appendTest">Append Test</option>').appendTo('#select3').parent().find('option:last-child').attr('value'), 'appendTest', 'Appending html options to select element');
845
846         reset();
847         var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
848         jQuery(document.getElementById('first')).appendTo('#sap');
849         equals( expected, jQuery('#sap').text(), "Check for appending of element" );
850
851         reset();
852         expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
853         jQuery([document.getElementById('first'), document.getElementById('yahoo')]).appendTo('#sap');
854         equals( expected, jQuery('#sap').text(), "Check for appending of array of elements" );
855
856         reset();
857         expected = document.querySelectorAll ?
858                 "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:" :
859                 "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
860         jQuery("#first, #yahoo").appendTo('#sap');
861         equals( expected, jQuery('#sap').text(), "Check for appending of jQuery object" );
862
863         reset();
864         jQuery('#select1').appendTo('#foo');
865         t( 'Append select', '#foo select', ['select1'] );
866 });
867
868 test("prepend(String|Element|Array&lt;Element&gt;|jQuery)", function() {
869         expect(5);
870         var defaultText = 'Try them out:'
871         var result = jQuery('#first').prepend('<b>buga</b>');
872         equals( result.text(), 'buga' + defaultText, 'Check if text prepending works' );
873         equals( jQuery('#select3').prepend('<option value="prependTest">Prepend Test</option>').find('option:first-child').attr('value'), 'prependTest', 'Prepending html options to select element');
874
875         reset();
876         var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
877         jQuery('#sap').prepend(document.getElementById('first'));
878         equals( expected, jQuery('#sap').text(), "Check for prepending of element" );
879
880         reset();
881         expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
882         jQuery('#sap').prepend([document.getElementById('first'), document.getElementById('yahoo')]);
883         equals( expected, jQuery('#sap').text(), "Check for prepending of array of elements" );
884
885         reset();
886         expected = document.querySelectorAll ?
887                 "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog" :
888                 "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
889         jQuery('#sap').prepend(jQuery("#first, #yahoo"));
890         equals( expected, jQuery('#sap').text(), "Check for prepending of jQuery object" );
891 });
892
893 test("prependTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
894         expect(6);
895         var defaultText = 'Try them out:'
896         jQuery('<b>buga</b>').prependTo('#first');
897         equals( jQuery('#first').text(), 'buga' + defaultText, 'Check if text prepending works' );
898         equals( jQuery('<option value="prependTest">Prepend Test</option>').prependTo('#select3').parent().find('option:first-child').attr('value'), 'prependTest', 'Prepending html options to select element');
899
900         reset();
901         var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
902         jQuery(document.getElementById('first')).prependTo('#sap');
903         equals( expected, jQuery('#sap').text(), "Check for prepending of element" );
904
905         reset();
906         expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
907         jQuery([document.getElementById('yahoo'), document.getElementById('first')]).prependTo('#sap');
908         equals( expected, jQuery('#sap').text(), "Check for prepending of array of elements" );
909
910         reset();
911         expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
912         jQuery("#yahoo, #first").prependTo('#sap');
913         equals( expected, jQuery('#sap').text(), "Check for prepending of jQuery object" );
914
915         reset();
916         jQuery('<select id="prependSelect1"></select>').prependTo('form:last');
917         jQuery('<select id="prependSelect2"><option>Test</option></select>').prependTo('form:last');
918
919         t( "Prepend Select", "#prependSelect2, #prependSelect1", ["prependSelect2", "prependSelect1"] );
920 });
921
922 test("before(String|Element|Array&lt;Element&gt;|jQuery)", function() {
923         expect(4);
924         var expected = 'This is a normal link: bugaYahoo';
925         jQuery('#yahoo').before('<b>buga</b>');
926         equals( expected, jQuery('#en').text(), 'Insert String before' );
927
928         reset();
929         expected = "This is a normal link: Try them out:Yahoo";
930         jQuery('#yahoo').before(document.getElementById('first'));
931         equals( expected, jQuery('#en').text(), "Insert element before" );
932
933         reset();
934         expected = "This is a normal link: Try them out:diveintomarkYahoo";
935         jQuery('#yahoo').before([document.getElementById('first'), document.getElementById('mark')]);
936         equals( expected, jQuery('#en').text(), "Insert array of elements before" );
937
938         reset();
939         expected = document.querySelectorAll ?
940                 "This is a normal link: diveintomarkTry them out:Yahoo" :
941                 "This is a normal link: Try them out:diveintomarkYahoo";
942         jQuery('#yahoo').before(jQuery("#first, #mark"));
943         equals( expected, jQuery('#en').text(), "Insert jQuery before" );
944 });
945
946 test("insertBefore(String|Element|Array&lt;Element&gt;|jQuery)", function() {
947         expect(4);
948         var expected = 'This is a normal link: bugaYahoo';
949         jQuery('<b>buga</b>').insertBefore('#yahoo');
950         equals( expected, jQuery('#en').text(), 'Insert String before' );
951
952         reset();
953         expected = "This is a normal link: Try them out:Yahoo";
954         jQuery(document.getElementById('first')).insertBefore('#yahoo');
955         equals( expected, jQuery('#en').text(), "Insert element before" );
956
957         reset();
958         expected = "This is a normal link: Try them out:diveintomarkYahoo";
959         jQuery([document.getElementById('first'), document.getElementById('mark')]).insertBefore('#yahoo');
960         equals( expected, jQuery('#en').text(), "Insert array of elements before" );
961
962         reset();
963         expected = document.querySelectorAll ?
964                 "This is a normal link: diveintomarkTry them out:Yahoo" :
965                 "This is a normal link: Try them out:diveintomarkYahoo";
966         jQuery("#first, #mark").insertBefore('#yahoo');
967         equals( expected, jQuery('#en').text(), "Insert jQuery before" );
968 });
969
970 test("after(String|Element|Array&lt;Element&gt;|jQuery)", function() {
971         expect(4);
972         var expected = 'This is a normal link: Yahoobuga';
973         jQuery('#yahoo').after('<b>buga</b>');
974         equals( expected, jQuery('#en').text(), 'Insert String after' );
975
976         reset();
977         expected = "This is a normal link: YahooTry them out:";
978         jQuery('#yahoo').after(document.getElementById('first'));
979         equals( expected, jQuery('#en').text(), "Insert element after" );
980
981         reset();
982         expected = "This is a normal link: YahooTry them out:diveintomark";
983         jQuery('#yahoo').after([document.getElementById('first'), document.getElementById('mark')]);
984         equals( expected, jQuery('#en').text(), "Insert array of elements after" );
985
986         reset();
987         expected = document.querySelectorAll ?
988                 "This is a normal link: YahoodiveintomarkTry them out:" :
989                 "This is a normal link: YahooTry them out:diveintomark";
990         jQuery('#yahoo').after(jQuery("#first, #mark"));
991         equals( expected, jQuery('#en').text(), "Insert jQuery after" );
992 });
993
994 test("insertAfter(String|Element|Array&lt;Element&gt;|jQuery)", function() {
995         expect(4);
996         var expected = 'This is a normal link: Yahoobuga';
997         jQuery('<b>buga</b>').insertAfter('#yahoo');
998         equals( expected, jQuery('#en').text(), 'Insert String after' );
999
1000         reset();
1001         expected = "This is a normal link: YahooTry them out:";
1002         jQuery(document.getElementById('first')).insertAfter('#yahoo');
1003         equals( expected, jQuery('#en').text(), "Insert element after" );
1004
1005         reset();
1006         expected = "This is a normal link: YahooTry them out:diveintomark";
1007         jQuery([document.getElementById('mark'), document.getElementById('first')]).insertAfter('#yahoo');
1008         equals( expected, jQuery('#en').text(), "Insert array of elements after" );
1009
1010         reset();
1011         expected = "This is a normal link: YahooTry them out:diveintomark";
1012         jQuery("#mark, #first").insertAfter('#yahoo');
1013         equals( expected, jQuery('#en').text(), "Insert jQuery after" );
1014 });
1015
1016 test("replaceWith(String|Element|Array&lt;Element&gt;|jQuery)", function() {
1017         expect(10);
1018         jQuery('#yahoo').replaceWith('<b id="replace">buga</b>');
1019         ok( jQuery("#replace")[0], 'Replace element with string' );
1020         ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after string' );
1021
1022         reset();
1023         jQuery('#yahoo').replaceWith(document.getElementById('first'));
1024         ok( jQuery("#first")[0], 'Replace element with element' );
1025         ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after element' );
1026
1027         reset();
1028         jQuery('#yahoo').replaceWith([document.getElementById('first'), document.getElementById('mark')]);
1029         ok( jQuery("#first")[0], 'Replace element with array of elements' );
1030         ok( jQuery("#mark")[0], 'Replace element with array of elements' );
1031         ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after array of elements' );
1032
1033         reset();
1034         jQuery('#yahoo').replaceWith(jQuery("#first, #mark"));
1035         ok( jQuery("#first")[0], 'Replace element with set of elements' );
1036         ok( jQuery("#mark")[0], 'Replace element with set of elements' );
1037         ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after set of elements' );
1038 });
1039
1040 test("replaceAll(String|Element|Array&lt;Element&gt;|jQuery)", function() {
1041         expect(10);
1042         jQuery('<b id="replace">buga</b>').replaceAll("#yahoo");
1043         ok( jQuery("#replace")[0], 'Replace element with string' );
1044         ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after string' );
1045
1046         reset();
1047         jQuery(document.getElementById('first')).replaceAll("#yahoo");
1048         ok( jQuery("#first")[0], 'Replace element with element' );
1049         ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after element' );
1050
1051         reset();
1052         jQuery([document.getElementById('first'), document.getElementById('mark')]).replaceAll("#yahoo");
1053         ok( jQuery("#first")[0], 'Replace element with array of elements' );
1054         ok( jQuery("#mark")[0], 'Replace element with array of elements' );
1055         ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after array of elements' );
1056
1057         reset();
1058         jQuery("#first, #mark").replaceAll("#yahoo");
1059         ok( jQuery("#first")[0], 'Replace element with set of elements' );
1060         ok( jQuery("#mark")[0], 'Replace element with set of elements' );
1061         ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after set of elements' );
1062 });
1063
1064 test("end()", function() {
1065         expect(3);
1066         equals( 'Yahoo', jQuery('#yahoo').parent().end().text(), 'Check for end' );
1067         ok( jQuery('#yahoo').end(), 'Check for end with nothing to end' );
1068
1069         var x = jQuery('#yahoo');
1070         x.parent();
1071         equals( 'Yahoo', jQuery('#yahoo').text(), 'Check for non-destructive behaviour' );
1072 });
1073
1074 test("find(String)", function() {
1075         expect(2);
1076         equals( 'Yahoo', jQuery('#foo').find('.blogTest').text(), 'Check for find' );
1077
1078         // using contents will get comments regular, text, and comment nodes
1079         var j = jQuery("#nonnodes").contents();
1080         equals( j.find("div").length, 0, "Check node,textnode,comment to find zero divs" );
1081 });
1082
1083 test("clone()", function() {
1084         expect(20);
1085         equals( 'This is a normal link: Yahoo', jQuery('#en').text(), 'Assert text for #en' );
1086         var clone = jQuery('#yahoo').clone();
1087         equals( 'Try them out:Yahoo', jQuery('#first').append(clone).text(), 'Check for clone' );
1088         equals( 'This is a normal link: Yahoo', jQuery('#en').text(), 'Reassert text for #en' );
1089
1090         var cloneTags = [
1091                 "<table/>", "<tr/>", "<td/>", "<div/>",
1092                 "<button/>", "<ul/>", "<ol/>", "<li/>",
1093                 "<input type='checkbox' />", "<select/>", "<option/>", "<textarea/>",
1094                 "<tbody/>", "<thead/>", "<tfoot/>", "<iframe/>"
1095         ];
1096         for (var i = 0; i < cloneTags.length; i++) {
1097                 var j = jQuery(cloneTags[i]);
1098                 equals( j[0].tagName, j.clone()[0].tagName, 'Clone a &lt;' + cloneTags[i].substring(1));
1099         }
1100
1101         // using contents will get comments regular, text, and comment nodes
1102         var cl = jQuery("#nonnodes").contents().clone();
1103         ok( cl.length >= 2, "Check node,textnode,comment clone works (some browsers delete comments on clone)" );
1104 });
1105
1106 if (!isLocal) {
1107 test("clone() on XML nodes", function() {
1108         expect(2);
1109         stop();
1110         jQuery.get("data/dashboard.xml", function (xml) {
1111                 var root = jQuery(xml.documentElement).clone();
1112                 jQuery("tab:first", xml).text("origval");
1113                 jQuery("tab:first", root).text("cloneval");
1114                 equals(jQuery("tab:first", xml).text(), "origval", "Check original XML node was correctly set");
1115                 equals(jQuery("tab:first", root).text(), "cloneval", "Check cloned XML node was correctly set");
1116                 start();
1117         });
1118 });
1119 }
1120
1121 test("is(String)", function() {
1122         expect(26);
1123         ok( jQuery('#form').is('form'), 'Check for element: A form must be a form' );
1124         ok( !jQuery('#form').is('div'), 'Check for element: A form is not a div' );
1125         ok( jQuery('#mark').is('.blog'), 'Check for class: Expected class "blog"' );
1126         ok( !jQuery('#mark').is('.link'), 'Check for class: Did not expect class "link"' );
1127         ok( jQuery('#simon').is('.blog.link'), 'Check for multiple classes: Expected classes "blog" and "link"' );
1128         ok( !jQuery('#simon').is('.blogTest'), 'Check for multiple classes: Expected classes "blog" and "link", but not "blogTest"' );
1129         ok( jQuery('#en').is('[lang="en"]'), 'Check for attribute: Expected attribute lang to be "en"' );
1130         ok( !jQuery('#en').is('[lang="de"]'), 'Check for attribute: Expected attribute lang to be "en", not "de"' );
1131         ok( jQuery('#text1').is('[type="text"]'), 'Check for attribute: Expected attribute type to be "text"' );
1132         ok( !jQuery('#text1').is('[type="radio"]'), 'Check for attribute: Expected attribute type to be "text", not "radio"' );
1133         ok( jQuery('#text2').is(':disabled'), 'Check for pseudoclass: Expected to be disabled' );
1134         ok( !jQuery('#text1').is(':disabled'), 'Check for pseudoclass: Expected not disabled' );
1135         ok( jQuery('#radio2').is(':checked'), 'Check for pseudoclass: Expected to be checked' );
1136         ok( !jQuery('#radio1').is(':checked'), 'Check for pseudoclass: Expected not checked' );
1137         ok( jQuery('#foo').is(':has(p)'), 'Check for child: Expected a child "p" element' );
1138         ok( !jQuery('#foo').is(':has(ul)'), 'Check for child: Did not expect "ul" element' );
1139         ok( jQuery('#foo').is(':has(p):has(a):has(code)'), 'Check for childs: Expected "p", "a" and "code" child elements' );
1140         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"' );
1141         ok( !jQuery('#foo').is(0), 'Expected false for an invalid expression - 0' );
1142         ok( !jQuery('#foo').is(null), 'Expected false for an invalid expression - null' );
1143         ok( !jQuery('#foo').is(''), 'Expected false for an invalid expression - ""' );
1144         ok( !jQuery('#foo').is(undefined), 'Expected false for an invalid expression - undefined' );
1145
1146         // test is() with comma-seperated expressions
1147         ok( jQuery('#en').is('[lang="en"],[lang="de"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
1148         ok( jQuery('#en').is('[lang="de"],[lang="en"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
1149         ok( jQuery('#en').is('[lang="en"] , [lang="de"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
1150         ok( jQuery('#en').is('[lang="de"] , [lang="en"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
1151 });
1152
1153 test("jQuery.merge()", function() {
1154         expect(6);
1155                 
1156         var parse = jQuery.merge;
1157         
1158         same( parse([],[]), [], "Empty arrays" );
1159         
1160         same( parse([1],[2]), [1,2], "Basic" );
1161         same( parse([1,2],[3,4]), [1,2,3,4], "Basic" );
1162         
1163         same( parse([1,2],[]), [1,2], "Second empty" );
1164         same( parse([],[1,2]), [1,2], "First empty" );  
1165         
1166         // Fixed at [5998], #3641
1167         same( parse([-2,-1], [0,1,2]), [-2,-1,0,1,2], "Second array including a zero (falsy)");
1168 });
1169
1170 test("jQuery.extend(Object, Object)", function() {
1171         expect(20);
1172
1173         var settings = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
1174                 options = { xnumber2: 1, xstring2: "x", xxx: "newstring" },
1175                 optionsCopy = { xnumber2: 1, xstring2: "x", xxx: "newstring" },
1176                 merged = { xnumber1: 5, xnumber2: 1, xstring1: "peter", xstring2: "x", xxx: "newstring" },
1177                 deep1 = { foo: { bar: true } },
1178                 deep1copy = { foo: { bar: true } },
1179                 deep2 = { foo: { baz: true }, foo2: document },
1180                 deep2copy = { foo: { baz: true }, foo2: document },
1181                 deepmerged = { foo: { bar: true, baz: true }, foo2: document };
1182
1183         jQuery.extend(settings, options);
1184         isObj( settings, merged, "Check if extended: settings must be extended" );
1185         isObj( options, optionsCopy, "Check if not modified: options must not be modified" );
1186
1187         jQuery.extend(settings, null, options);
1188         isObj( settings, merged, "Check if extended: settings must be extended" );
1189         isObj( options, optionsCopy, "Check if not modified: options must not be modified" );
1190
1191         jQuery.extend(true, deep1, deep2);
1192         isObj( deep1.foo, deepmerged.foo, "Check if foo: settings must be extended" );
1193         isObj( deep2.foo, deep2copy.foo, "Check if not deep2: options must not be modified" );
1194         equals( deep1.foo2, document, "Make sure that a deep clone was not attempted on the document" );
1195
1196         var nullUndef;
1197         nullUndef = jQuery.extend({}, options, { xnumber2: null });
1198         ok( nullUndef.xnumber2 === null, "Check to make sure null values are copied");
1199
1200         nullUndef = jQuery.extend({}, options, { xnumber2: undefined });
1201         ok( nullUndef.xnumber2 === options.xnumber2, "Check to make sure undefined values are not copied");
1202
1203         nullUndef = jQuery.extend({}, options, { xnumber0: null });
1204         ok( nullUndef.xnumber0 === null, "Check to make sure null values are inserted");
1205
1206         var target = {};
1207         var recursive = { foo:target, bar:5 };
1208         jQuery.extend(true, target, recursive);
1209         isObj( target, { bar:5 }, "Check to make sure a recursive obj doesn't go never-ending loop by not copying it over" );
1210
1211         var ret = jQuery.extend(true, { foo: [] }, { foo: [0] } ); // 1907
1212         equals( ret.foo.length, 1, "Check to make sure a value with coersion 'false' copies over when necessary to fix #1907" );
1213
1214         var ret = jQuery.extend(true, { foo: "1,2,3" }, { foo: [1, 2, 3] } );
1215         ok( typeof ret.foo != "string", "Check to make sure values equal with coersion (but not actually equal) overwrite correctly" );
1216
1217         var ret = jQuery.extend(true, { foo:"bar" }, { foo:null } );
1218         ok( typeof ret.foo !== 'undefined', "Make sure a null value doesn't crash with deep extend, for #1908" );
1219
1220         var obj = { foo:null };
1221         jQuery.extend(true, obj, { foo:"notnull" } );
1222         equals( obj.foo, "notnull", "Make sure a null value can be overwritten" );
1223
1224         function func() {}
1225         jQuery.extend(func, { key: "value" } );
1226         equals( func.key, "value", "Verify a function can be extended" );
1227
1228         var defaults = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
1229                 defaultsCopy = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
1230                 options1 = { xnumber2: 1, xstring2: "x" },
1231                 options1Copy = { xnumber2: 1, xstring2: "x" },
1232                 options2 = { xstring2: "xx", xxx: "newstringx" },
1233                 options2Copy = { xstring2: "xx", xxx: "newstringx" },
1234                 merged2 = { xnumber1: 5, xnumber2: 1, xstring1: "peter", xstring2: "xx", xxx: "newstringx" };
1235
1236         var settings = jQuery.extend({}, defaults, options1, options2);
1237         isObj( settings, merged2, "Check if extended: settings must be extended" );
1238         isObj( defaults, defaultsCopy, "Check if not modified: options1 must not be modified" );
1239         isObj( options1, options1Copy, "Check if not modified: options1 must not be modified" );
1240         isObj( options2, options2Copy, "Check if not modified: options2 must not be modified" );
1241 });
1242
1243 test("val()", function() {
1244         expect(8);
1245
1246         equals( jQuery("#text1").val(), "Test", "Check for value of input element" );
1247         // ticket #1714 this caused a JS error in IE
1248         equals( jQuery("#first").val(), "", "Check a paragraph element to see if it has a value" );
1249         ok( jQuery([]).val() === undefined, "Check an empty jQuery object will return undefined from val" );
1250         
1251         equals( jQuery('#select2').val(), '3', 'Call val() on a single="single" select' );
1252
1253         isSet( jQuery('#select3').val(), ['1', '2'], 'Call val() on a multiple="multiple" select' );
1254
1255         equals( jQuery('#option3c').val(), '2', 'Call val() on a option element with value' );
1256         
1257         equals( jQuery('#option3a').val(), '', 'Call val() on a option element with empty value' );
1258         
1259         equals( jQuery('#option3e').val(), 'no value', 'Call val() on a option element with no value attribute' );
1260         
1261 });
1262
1263 test("val(String/Number)", function() {
1264         expect(6);
1265         document.getElementById('text1').value = "bla";
1266         equals( jQuery("#text1").val(), "bla", "Check for modified value of input element" );
1267         
1268         jQuery("#text1").val('test');
1269         equals( document.getElementById('text1').value, "test", "Check for modified (via val(String)) value of input element" );
1270         
1271         jQuery("#text1").val(67);
1272         equals( document.getElementById('text1').value, "67", "Check for modified (via val(Number)) value of input element" );
1273
1274         jQuery("#select1").val("3");
1275         equals( jQuery("#select1").val(), "3", "Check for modified (via val(String)) value of select element" );
1276
1277         jQuery("#select1").val(2);
1278         equals( jQuery("#select1").val(), "2", "Check for modified (via val(Number)) value of select element" );
1279
1280         // using contents will get comments regular, text, and comment nodes
1281         var j = jQuery("#nonnodes").contents();
1282         j.val("asdf");
1283         equals( j.val(), "asdf", "Check node,textnode,comment with val()" );
1284         j.removeAttr("value");
1285 });
1286
1287 var scriptorder = 0;
1288
1289 test("html(String)", function() {
1290         expect(13);
1291         var div = jQuery("#main > div");
1292         div.html("<b>test</b>");
1293         var pass = true;
1294         for ( var i = 0; i < div.size(); i++ ) {
1295                 if ( div.get(i).childNodes.length != 1 ) pass = false;
1296         }
1297         ok( pass, "Set HTML" );
1298
1299         reset();
1300         // using contents will get comments regular, text, and comment nodes
1301         var j = jQuery("#nonnodes").contents();
1302         j.html("<b>bold</b>");
1303
1304         // this is needed, or the expando added by jQuery unique will yield a different html
1305         j.find('b').removeData();
1306         equals( j.html().toLowerCase(), "<b>bold</b>", "Check node,textnode,comment with html()" );
1307
1308         jQuery("#main").html("<select/>");
1309         jQuery("#main select").html("<option>O1</option><option selected='selected'>O2</option><option>O3</option>");
1310         equals( jQuery("#main select").val(), "O2", "Selected option correct" );
1311
1312         var $div = jQuery('<div />');
1313         equals( $div.html( 5 ).html(), '5', 'Setting a number as html' );
1314         equals( $div.html( 0 ).html(), '0', 'Setting a zero as html' );
1315
1316         stop();
1317
1318         jQuery("#main").html('<script type="text/javascript">ok( true, "jQuery().html().evalScripts() Evals Scripts Twice in Firefox, see #975" );</script>');
1319
1320         jQuery("#main").html('foo <form><script type="text/javascript">ok( true, "jQuery().html().evalScripts() Evals Scripts Twice in Firefox, see #975" );</script></form>');
1321
1322         // it was decided that waiting to execute ALL scripts makes sense since nested ones have to wait anyway so this test case is changed, see #1959
1323         jQuery("#main").html("<script>equals(scriptorder++, 0, 'Script is executed in order');equals(jQuery('#scriptorder').length, 1,'Execute after html (even though appears before)')<\/script><span id='scriptorder'><script>equals(scriptorder++, 1, 'Script (nested) is executed in order');equals(jQuery('#scriptorder').length, 1,'Execute after html')<\/script></span><script>equals(scriptorder++, 2, 'Script (unnested) is executed in order');equals(jQuery('#scriptorder').length, 1,'Execute after html')<\/script>");
1324
1325         setTimeout( start, 100 );
1326 });
1327
1328 test("filter()", function() {
1329         expect(6);
1330         isSet( jQuery("#form input").filter(":checked").get(), q("radio2", "check1"), "filter(String)" );
1331         isSet( jQuery("p").filter("#ap, #sndp").get(), q("ap", "sndp"), "filter('String, String')" );
1332         isSet( jQuery("p").filter("#ap,#sndp").get(), q("ap", "sndp"), "filter('String,String')" );
1333         isSet( jQuery("p").filter(function() { return !jQuery("a", this).length }).get(), q("sndp", "first"), "filter(Function)" );
1334
1335         // using contents will get comments regular, text, and comment nodes
1336         var j = jQuery("#nonnodes").contents();
1337         equals( j.filter("span").length, 1, "Check node,textnode,comment to filter the one span" );
1338         equals( j.filter("[name]").length, 0, "Check node,textnode,comment to filter the one span" );
1339 });
1340
1341 test("closest()", function() {
1342         expect(4);
1343         isSet( jQuery("body").closest("body").get(), q("body"), "closest(body)" );
1344         isSet( jQuery("body").closest("html").get(), q("html"), "closest(html)" );
1345         isSet( jQuery("body").closest("div").get(), [], "closest(div)" );
1346         isSet( jQuery("#main").closest("span,#html").get(), q("html"), "closest(span,#html)" );
1347 });
1348
1349 test("not()", function() {
1350         expect(11);
1351         equals( jQuery("#main > p#ap > a").not("#google").length, 2, "not('selector')" );
1352         equals( jQuery("#main > p#ap > a").not(document.getElementById("google")).length, 2, "not(DOMElement)" );
1353         isSet( jQuery("p").not(".result").get(), q("firstp", "ap", "sndp", "en", "sap", "first"), "not('.class')" );
1354         isSet( jQuery("p").not("#ap, #sndp, .result").get(), q("firstp", "en", "sap", "first"), "not('selector, selector')" );
1355         isSet( jQuery("p").not(jQuery("#ap, #sndp, .result")).get(), q("firstp", "en", "sap", "first"), "not(jQuery)" );
1356         equals( jQuery("p").not(document.getElementsByTagName("p")).length, 0, "not(Array-like DOM collection)" );
1357         isSet( jQuery("#form option").not("option.emptyopt:contains('Nothing'),[selected],[value='1']").get(), q("option1c", "option1d", "option2c", "option3d", "option3e" ), "not('complex selector')");
1358
1359         var selects = jQuery("#form select");
1360         isSet( selects.not( selects[1] ), q("select1", "select3"), "filter out DOM element");
1361
1362         isSet( jQuery('#ap *').not('code'), q("google", "groups", "anchor1", "mark"), "not('tag selector')" );
1363         isSet( jQuery('#ap *').not('code, #mark'), q("google", "groups", "anchor1"), "not('tag, ID selector')" );
1364         isSet( jQuery('#ap *').not('#mark, code'), q("google", "groups", "anchor1"), "not('ID, tag selector')"); 
1365 });
1366
1367 test("andSelf()", function() {
1368         expect(4);
1369         isSet( jQuery("#en").siblings().andSelf().get(), q("sndp", "sap","en"), "Check for siblings and self" );
1370         isSet( jQuery("#foo").children().andSelf().get(), q("sndp", "en", "sap", "foo"), "Check for children and self" );
1371         isSet( jQuery("#sndp, #en").parent().andSelf().get(), q("foo","sndp","en"), "Check for parent and self" );
1372         isSet( jQuery("#groups").parents("p, div").andSelf().get(), q("ap", "main", "groups"), "Check for parents and self" );
1373 });
1374
1375 test("siblings([String])", function() {
1376         expect(5);
1377         isSet( jQuery("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" );
1378         isSet( jQuery("#sndp").siblings(":has(code)").get(), q("sap"), "Check for filtered siblings (has code child element)" );
1379         isSet( jQuery("#sndp").siblings(":has(a)").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
1380         isSet( jQuery("#foo").siblings("form, b").get(), q("form", "lengthtest", "testForm", "floatTest"), "Check for multiple filters" );
1381         var set = document.querySelectorAll ? q("en", "sap", "sndp") : q("sndp", "sap", "en");
1382         isSet( jQuery("#en, #sndp").siblings().get(), set, "Check for unique results from siblings" );
1383 });
1384
1385 test("children([String])", function() {
1386         expect(3);
1387         isSet( jQuery("#foo").children().get(), q("sndp", "en", "sap"), "Check for children" );
1388         isSet( jQuery("#foo").children(":has(code)").get(), q("sndp", "sap"), "Check for filtered children" );
1389         isSet( jQuery("#foo").children("#en, #sap").get(), q("en", "sap"), "Check for multiple filters" );
1390 });
1391
1392 test("parent([String])", function() {
1393         expect(5);
1394         equals( jQuery("#groups").parent()[0].id, "ap", "Simple parent check" );
1395         equals( jQuery("#groups").parent("p")[0].id, "ap", "Filtered parent check" );
1396         equals( jQuery("#groups").parent("div").length, 0, "Filtered parent check, no match" );
1397         equals( jQuery("#groups").parent("div, p")[0].id, "ap", "Check for multiple filters" );
1398         isSet( jQuery("#en, #sndp").parent().get(), q("foo"), "Check for unique results from parent" );
1399 });
1400
1401 test("parents([String])", function() {
1402         expect(5);
1403         equals( jQuery("#groups").parents()[0].id, "ap", "Simple parents check" );
1404         equals( jQuery("#groups").parents("p")[0].id, "ap", "Filtered parents check" );
1405         equals( jQuery("#groups").parents("div")[0].id, "main", "Filtered parents check2" );
1406         isSet( jQuery("#groups").parents("p, div").get(), q("ap", "main"), "Check for multiple filters" );
1407         isSet( jQuery("#en, #sndp").parents().get(), q("foo", "main", "dl", "body", "html"), "Check for unique results from parents" );
1408 });
1409
1410 test("next([String])", function() {
1411         expect(4);
1412         equals( jQuery("#ap").next()[0].id, "foo", "Simple next check" );
1413         equals( jQuery("#ap").next("div")[0].id, "foo", "Filtered next check" );
1414         equals( jQuery("#ap").next("p").length, 0, "Filtered next check, no match" );
1415         equals( jQuery("#ap").next("div, p")[0].id, "foo", "Multiple filters" );
1416 });
1417
1418 test("prev([String])", function() {
1419         expect(4);
1420         equals( jQuery("#foo").prev()[0].id, "ap", "Simple prev check" );
1421         equals( jQuery("#foo").prev("p")[0].id, "ap", "Filtered prev check" );
1422         equals( jQuery("#foo").prev("div").length, 0, "Filtered prev check, no match" );
1423         equals( jQuery("#foo").prev("p, div")[0].id, "ap", "Multiple filters" );
1424 });
1425
1426 test("show()", function() {
1427         expect(15);
1428         var pass = true, div = jQuery("div");
1429         div.show().each(function(){
1430                 if ( this.style.display == "none" ) pass = false;
1431         });
1432         ok( pass, "Show" );
1433
1434         jQuery("#main").append('<div id="show-tests"><div><p><a href="#"></a></p><code></code><pre></pre><span></span></div><table><thead><tr><th></th></tr></thead><tbody><tr><td></td></tr></tbody></table><ul><li></li></ul></div>');
1435         var test = {
1436                 "div"      : "block",
1437                 "p"        : "block",
1438                 "a"        : "inline",
1439                 "code"     : "inline",
1440                 "pre"      : "block",
1441                 "span"     : "inline",
1442                 "table"    : jQuery.browser.msie ? "block" : "table",
1443                 "thead"    : jQuery.browser.msie ? "block" : "table-header-group",
1444                 "tbody"    : jQuery.browser.msie ? "block" : "table-row-group",
1445                 "tr"       : jQuery.browser.msie ? "block" : "table-row",
1446                 "th"       : jQuery.browser.msie ? "block" : "table-cell",
1447                 "td"       : jQuery.browser.msie ? "block" : "table-cell",
1448                 "ul"       : "block",
1449                 "li"       : jQuery.browser.msie ? "block" : "list-item"
1450         };
1451
1452         jQuery.each(test, function(selector, expected) {
1453                 var elem = jQuery(selector, "#show-tests").show();
1454                 equals( elem.css("display"), expected, "Show using correct display type for " + selector );
1455         });
1456 });
1457
1458 test("addClass(String)", function() {
1459         expect(2);
1460         var div = jQuery("div");
1461         div.addClass("test");
1462         var pass = true;
1463         for ( var i = 0; i < div.size(); i++ ) {
1464          if ( div.get(i).className.indexOf("test") == -1 ) pass = false;
1465         }
1466         ok( pass, "Add Class" );
1467
1468         // using contents will get regular, text, and comment nodes
1469         var j = jQuery("#nonnodes").contents();
1470         j.addClass("asdf");
1471         ok( j.hasClass("asdf"), "Check node,textnode,comment for addClass" );
1472 });
1473
1474 test("removeClass(String) - simple", function() {
1475         expect(4);
1476         
1477         var $divs = jQuery('div');
1478         
1479         $divs.addClass("test").removeClass("test");
1480                 
1481         ok( !$divs.is('.test'), "Remove Class" );
1482
1483         reset();
1484         
1485         $divs.addClass("test").addClass("foo").addClass("bar");
1486         $divs.removeClass("test").removeClass("bar").removeClass("foo");
1487         
1488         ok( !$divs.is('.test,.bar,.foo'), "Remove multiple classes" );
1489
1490         reset();
1491         
1492         $divs.eq(0).addClass("test").removeClass("");
1493         ok( $divs.eq(0).is('.test'), "Empty string passed to removeClass" );
1494
1495         // using contents will get regular, text, and comment nodes
1496         var j = jQuery("#nonnodes").contents();
1497         j.removeClass("asdf");
1498         ok( !j.hasClass("asdf"), "Check node,textnode,comment for removeClass" );
1499 });
1500
1501 test("toggleClass(String)", function() {
1502         expect(6);\r
1503         var e = jQuery("#firstp");
1504         ok( !e.is(".test"), "Assert class not present" );
1505         e.toggleClass("test");
1506         ok( e.is(".test"), "Assert class present" );
1507         e.toggleClass("test");
1508         ok( !e.is(".test"), "Assert class not present" );
1509
1510         e.toggleClass("test", false);\r
1511         ok( !e.is(".test"), "Assert class not present" );\r
1512         e.toggleClass("test", true);\r
1513         ok( e.is(".test"), "Assert class present" );\r
1514         e.toggleClass("test", false);\r
1515         ok( !e.is(".test"), "Assert class not present" );\r
1516 });
1517
1518 test("removeAttr(String", function() {
1519         expect(1);
1520         equals( jQuery('#mark').removeAttr("class")[0].className, "", "remove class" );
1521 });
1522
1523 test("text(String)", function() {
1524         expect(4);
1525         equals( jQuery("#foo").text("<div><b>Hello</b> cruel world!</div>")[0].innerHTML.replace(/>/g, "&gt;"), "&lt;div&gt;&lt;b&gt;Hello&lt;/b&gt; cruel world!&lt;/div&gt;", "Check escaped text" );
1526
1527         // using contents will get comments regular, text, and comment nodes
1528         var j = jQuery("#nonnodes").contents();
1529         j.text("hi!");
1530         equals( jQuery(j[0]).text(), "hi!", "Check node,textnode,comment with text()" );
1531         equals( j[1].nodeValue, " there ", "Check node,textnode,comment with text()" );
1532         equals( j[2].nodeType, 8, "Check node,textnode,comment with text()" );
1533 });
1534
1535 test("jQuery.each(Object,Function)", function() {
1536         expect(12);
1537         jQuery.each( [0,1,2], function(i, n){
1538                 equals( i, n, "Check array iteration" );
1539         });
1540
1541         jQuery.each( [5,6,7], function(i, n){
1542                 equals( i, n - 5, "Check array iteration" );
1543         });
1544
1545         jQuery.each( { name: "name", lang: "lang" }, function(i, n){
1546                 equals( i, n, "Check object iteration" );
1547         });
1548
1549         var total = 0;
1550         jQuery.each([1,2,3], function(i,v){ total += v; });
1551         equals( total, 6, "Looping over an array" );
1552         total = 0;
1553         jQuery.each([1,2,3], function(i,v){ total += v; if ( i == 1 ) return false; });
1554         equals( total, 3, "Looping over an array, with break" );
1555         total = 0;
1556         jQuery.each({"a":1,"b":2,"c":3}, function(i,v){ total += v; });
1557         equals( total, 6, "Looping over an object" );
1558         total = 0;
1559         jQuery.each({"a":3,"b":3,"c":3}, function(i,v){ total += v; return false; });
1560         equals( total, 3, "Looping over an object, with break" );
1561 });
1562
1563 test("jQuery.prop", function() {
1564         expect(2);
1565         var handle = function() { return this.id };
1566         equals( jQuery.prop(jQuery("#ap")[0], handle), "ap", "Check with Function argument" );
1567         equals( jQuery.prop(jQuery("#ap")[0], "value"), "value", "Check with value argument" );
1568 });
1569
1570 test("jQuery.className", function() {
1571         expect(6);
1572         var x = jQuery("<p>Hi</p>")[0];
1573         var c = jQuery.className;
1574         c.add(x, "hi");
1575         equals( x.className, "hi", "Check single added class" );
1576         c.add(x, "foo bar");
1577         equals( x.className, "hi foo bar", "Check more added classes" );
1578         c.remove(x);
1579         equals( x.className, "", "Remove all classes" );
1580         c.add(x, "hi foo bar");
1581         c.remove(x, "foo");
1582         equals( x.className, "hi bar", "Check removal of one class" );
1583         ok( c.has(x, "hi"), "Check has1" );
1584         ok( c.has(x, "bar"), "Check has2" );
1585 });
1586
1587 test("remove()", function() {
1588         expect(6);
1589         jQuery("#ap").children().remove();
1590         ok( jQuery("#ap").text().length > 10, "Check text is not removed" );
1591         equals( jQuery("#ap").children().length, 0, "Check remove" );
1592
1593         reset();
1594         jQuery("#ap").children().remove("a");
1595         ok( jQuery("#ap").text().length > 10, "Check text is not removed" );
1596         equals( jQuery("#ap").children().length, 1, "Check filtered remove" );
1597
1598         // using contents will get comments regular, text, and comment nodes
1599         equals( jQuery("#nonnodes").contents().length, 3, "Check node,textnode,comment remove works" );
1600         jQuery("#nonnodes").contents().remove();
1601         equals( jQuery("#nonnodes").contents().length, 0, "Check node,textnode,comment remove works" );
1602 });
1603
1604 test("empty()", function() {
1605         expect(3);
1606         equals( jQuery("#ap").children().empty().text().length, 0, "Check text is removed" );
1607         equals( jQuery("#ap").children().length, 4, "Check elements are not removed" );
1608
1609         // using contents will get comments regular, text, and comment nodes
1610         var j = jQuery("#nonnodes").contents();
1611         j.empty();
1612         equals( j.html(), "", "Check node,textnode,comment empty works" );
1613 });
1614
1615 test("slice()", function() {
1616         expect(6);
1617         
1618         var $links = jQuery("#ap a");
1619         
1620         isSet( $links.slice(1,2), q("groups"), "slice(1,2)" );
1621         isSet( $links.slice(1), q("groups", "anchor1", "mark"), "slice(1)" );
1622         isSet( $links.slice(0,3), q("google", "groups", "anchor1"), "slice(0,3)" );
1623         isSet( $links.slice(-1), q("mark"), "slice(-1)" );
1624
1625         isSet( $links.eq(1), q("groups"), "eq(1)" );
1626         
1627         isSet( $links.eq('2'), q("anchor1"), "eq('2')" );
1628 });
1629
1630 test("map()", function() {
1631         expect(2);//expect(6);
1632
1633         isSet(
1634                 jQuery("#ap").map(function(){
1635                         return jQuery(this).find("a").get();
1636                 }),
1637                 q("google", "groups", "anchor1", "mark"),
1638                 "Array Map"
1639         );
1640
1641         isSet(
1642                 jQuery("#ap > a").map(function(){
1643                         return this.parentNode;
1644                 }),
1645                 q("ap","ap","ap"),
1646                 "Single Map"
1647         );
1648
1649         return;//these haven't been accepted yet
1650
1651         //for #2616
1652         var keys = jQuery.map( {a:1,b:2}, function( v, k ){
1653                 return k;
1654         }, [ ] );
1655
1656         equals( keys.join(""), "ab", "Map the keys from a hash to an array" );
1657
1658         var values = jQuery.map( {a:1,b:2}, function( v, k ){
1659                 return v;
1660         }, [ ] );
1661
1662         equals( values.join(""), "12", "Map the values from a hash to an array" );
1663
1664         var scripts = document.getElementsByTagName("script");
1665         var mapped = jQuery.map( scripts, function( v, k ){
1666                 return v;
1667         }, {length:0} );
1668
1669         equals( mapped.length, scripts.length, "Map an array(-like) to a hash" );
1670
1671         var flat = jQuery.map( Array(4), function( v, k ){
1672                 return k % 2 ? k : [k,k,k];//try mixing array and regular returns
1673         });
1674
1675         equals( flat.join(""), "00012223", "try the new flatten technique(#2616)" );
1676 });
1677
1678 test("contents()", function() {
1679         expect(12);
1680         equals( jQuery("#ap").contents().length, 9, "Check element contents" );
1681         ok( jQuery("#iframe").contents()[0], "Check existance of IFrame document" );
1682         var ibody = jQuery("#loadediframe").contents()[0].body;
1683         ok( ibody, "Check existance of IFrame body" );
1684
1685         equals( jQuery("span", ibody).text(), "span text", "Find span in IFrame and check its text" );
1686
1687         jQuery(ibody).append("<div>init text</div>");
1688         equals( jQuery("div", ibody).length, 2, "Check the original div and the new div are in IFrame" );
1689
1690         equals( jQuery("div:last", ibody).text(), "init text", "Add text to div in IFrame" );
1691
1692         jQuery("div:last", ibody).text("div text");
1693         equals( jQuery("div:last", ibody).text(), "div text", "Add text to div in IFrame" );
1694
1695         jQuery("div:last", ibody).remove();
1696         equals( jQuery("div", ibody).length, 1, "Delete the div and check only one div left in IFrame" );
1697
1698         equals( jQuery("div", ibody).text(), "span text", "Make sure the correct div is still left after deletion in IFrame" );
1699
1700         jQuery("<table/>", ibody).append("<tr><td>cell</td></tr>").appendTo(ibody);
1701         jQuery("table", ibody).remove();
1702         equals( jQuery("div", ibody).length, 1, "Check for JS error on add and delete of a table in IFrame" );
1703
1704         // using contents will get comments regular, text, and comment nodes
1705         var c = jQuery("#nonnodes").contents().contents();
1706         equals( c.length, 1, "Check node,textnode,comment contents is just one" );
1707         equals( c[0].nodeValue, "hi", "Check node,textnode,comment contents is just the one from span" );
1708 });
1709
1710 test("jQuery.makeArray", function(){
1711         expect(15);
1712
1713         equals( jQuery.makeArray(jQuery('html>*'))[0].nodeName, "HEAD", "Pass makeArray a jQuery object" );
1714
1715         equals( jQuery.makeArray(document.getElementsByName("PWD")).slice(0,1)[0].name, "PWD", "Pass makeArray a nodelist" );
1716
1717         equals( (function(){ return jQuery.makeArray(arguments); })(1,2).join(""), "12", "Pass makeArray an arguments array" );
1718
1719         equals( jQuery.makeArray([1,2,3]).join(""), "123", "Pass makeArray a real array" );
1720
1721         equals( jQuery.makeArray().length, 0, "Pass nothing to makeArray and expect an empty array" );
1722
1723         equals( jQuery.makeArray( 0 )[0], 0 , "Pass makeArray a number" );
1724
1725         equals( jQuery.makeArray( "foo" )[0], "foo", "Pass makeArray a string" );
1726
1727         equals( jQuery.makeArray( true )[0].constructor, Boolean, "Pass makeArray a boolean" );
1728
1729         equals( jQuery.makeArray( document.createElement("div") )[0].nodeName, "DIV", "Pass makeArray a single node" );
1730
1731         equals( jQuery.makeArray( {length:2, 0:"a", 1:"b"} ).join(""), "ab", "Pass makeArray an array like map (with length)" );
1732
1733         ok( !!jQuery.makeArray( document.documentElement.childNodes ).slice(0,1)[0].nodeName, "Pass makeArray a childNodes array" );
1734
1735         // function, is tricky as it has length
1736         equals( jQuery.makeArray( function(){ return 1;} )[0](), 1, "Pass makeArray a function" );
1737         
1738         //window, also has length
1739         equals( jQuery.makeArray(window)[0], window, "Pass makeArray the window" );
1740
1741         equals( jQuery.makeArray(/a/)[0].constructor, RegExp, "Pass makeArray a regex" );
1742
1743         ok( jQuery.makeArray(document.getElementById('form')).length >= 13, "Pass makeArray a form (treat as elements)" );
1744 });