Added a fix for .noConflict(true) not reverting properly. Also added unit tests for...
[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("$()", function() {
15         expect(5);
16         
17         var main = $("#main");
18         isSet( $("div p", main).get(), q("sndp", "en", "sap"), "Basic selector with jQuery object as context" );
19         
20         // make sure this is handled
21         $('<p>\r\n</p>');
22         ok( true, "Check for \\r and \\n in jQuery()" );
23         
24         /* // Disabled until we add this functionality in
25         var pass = true;
26         try {
27                 $("<div>Testing</div>").appendTo(document.getElementById("iframe").contentDocument.body);
28         } catch(e){
29                 pass = false;
30         }
31         ok( pass, "$('&lt;tag&gt;') needs optional document parameter to ease cross-frame DOM wrangling, see #968" );*/
32
33         var code = $("<code/>");
34         equals( code.length, 1, "Correct number of elements generated for code" );
35         var img = $("<img/>");
36         equals( img.length, 1, "Correct number of elements generated for img" );
37         var div = $("<div/><hr/><code/><b/>");
38         equals( div.length, 4, "Correct number of elements generated for div hr code b" );
39 });
40
41 test("noConflict", function() {
42         expect(6);
43         
44         var old = jQuery;
45         var newjQuery = jQuery.noConflict();
46
47         ok( newjQuery == old, "noConflict returned the jQuery object" );
48         ok( jQuery == old, "Make sure jQuery wasn't touched." );
49         ok( $ == "$", "Make sure $ was reverted." );
50
51         jQuery = $ = old;
52
53         newjQuery = jQuery.noConflict(true);
54
55         ok( newjQuery == old, "noConflict returned the jQuery object" );
56         ok( jQuery == "jQuery", "Make sure jQuery was reverted." );
57         ok( $ == "$", "Make sure $ was reverted." );
58
59         jQuery = $ = old;
60 });
61
62 test("isFunction", function() {
63         expect(21);
64
65         // Make sure that false values return false
66         ok( !jQuery.isFunction(), "No Value" );
67         ok( !jQuery.isFunction( null ), "null Value" );
68         ok( !jQuery.isFunction( undefined ), "undefined Value" );
69         ok( !jQuery.isFunction( "" ), "Empty String Value" );
70         ok( !jQuery.isFunction( 0 ), "0 Value" );
71
72         // Check built-ins
73         // Safari uses "(Internal Function)"
74         ok( jQuery.isFunction(String), "String Function" );
75         ok( jQuery.isFunction(Array), "Array Function" );
76         ok( jQuery.isFunction(Object), "Object Function" );
77         ok( jQuery.isFunction(Function), "Function Function" );
78
79         // When stringified, this could be misinterpreted
80         var mystr = "function";
81         ok( !jQuery.isFunction(mystr), "Function String" );
82
83         // When stringified, this could be misinterpreted
84         var myarr = [ "function" ];
85         ok( !jQuery.isFunction(myarr), "Function Array" );
86
87         // When stringified, this could be misinterpreted
88         var myfunction = { "function": "test" };
89         ok( !jQuery.isFunction(myfunction), "Function Object" );
90
91         // Make sure normal functions still work
92         var fn = function(){};
93         ok( jQuery.isFunction(fn), "Normal Function" );
94
95         var obj = document.createElement("object");
96
97         // Firefox says this is a function
98         ok( !jQuery.isFunction(obj), "Object Element" );
99
100         // IE says this is an object
101         ok( jQuery.isFunction(obj.getAttribute), "getAttribute Function" );
102
103         var nodes = document.body.childNodes;
104
105         // Safari says this is a function
106         ok( !jQuery.isFunction(nodes), "childNodes Property" );
107
108         var first = document.body.firstChild;
109         
110         // Normal elements are reported ok everywhere
111         ok( !jQuery.isFunction(first), "A normal DOM Element" );
112
113         var input = document.createElement("input");
114         input.type = "text";
115         document.body.appendChild( input );
116
117         // IE says this is an object
118         ok( jQuery.isFunction(input.focus), "A default function property" );
119
120         document.body.removeChild( input );
121
122         var a = document.createElement("a");
123         a.href = "some-function";
124         document.body.appendChild( a );
125
126         // This serializes with the word 'function' in it
127         ok( !jQuery.isFunction(a), "Anchor Element" );
128
129         document.body.removeChild( a );
130
131         // Recursive function calls have lengths and array-like properties
132         function callme(callback){
133                 function fn(response){
134                         callback(response);
135                 }
136
137                 ok( jQuery.isFunction(fn), "Recursive Function Call" );
138
139         fn({ some: "data" });
140         };
141
142         callme(function(){
143         callme(function(){});
144         });
145 });
146
147 var foo = false;
148
149 test("$('html')", function() {
150         expect(4);
151         
152         reset();
153         foo = false;
154         var s = $("<script>var foo='test';</script>")[0];
155         ok( s, "Creating a script" );
156         ok( !foo, "Make sure the script wasn't executed prematurely" );
157         $("body").append(s);
158         ok( foo, "Executing a scripts contents in the right context" );
159         
160         reset();
161         ok( $("<link rel='stylesheet'/>")[0], "Creating a link" );
162         
163         reset();
164 });
165
166 test("length", function() {
167         expect(1);
168         ok( $("p").length == 6, "Get Number of Elements Found" );
169 });
170
171 test("size()", function() {
172         expect(1);
173         ok( $("p").size() == 6, "Get Number of Elements Found" );
174 });
175
176 test("get()", function() {
177         expect(1);
178         isSet( $("p").get(), q("firstp","ap","sndp","en","sap","first"), "Get All Elements" );
179 });
180
181 test("get(Number)", function() {
182         expect(1);
183         ok( $("p").get(0) == document.getElementById("firstp"), "Get A Single Element" );
184 });
185
186 test("add(String|Element|Array)", function() {
187         expect(7);
188         isSet( $("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" );
189         isSet( $("#sndp").add( $("#en")[0] ).add( $("#sap") ).get(), q("sndp", "en", "sap"), "Check elements from document" );
190         ok( $([]).add($("#form")[0].elements).length >= 13, "Check elements from array" );
191         
192         var x = $([]).add($("<p id='x1'>xxx</p>")).add($("<p id='x2'>xxx</p>"));
193         ok( x[0].id == "x1", "Check on-the-fly element1" );
194         ok( x[1].id == "x2", "Check on-the-fly element2" );
195         
196         var x = $([]).add("<p id='x1'>xxx</p>").add("<p id='x2'>xxx</p>");
197         ok( x[0].id == "x1", "Check on-the-fly element1" );
198         ok( x[1].id == "x2", "Check on-the-fly element2" );
199 });
200
201 test("each(Function)", function() {
202         expect(1);
203         var div = $("div");
204         div.each(function(){this.foo = 'zoo';});
205         var pass = true;
206         for ( var i = 0; i < div.size(); i++ ) {
207           if ( div.get(i).foo != "zoo" ) pass = false;
208         }
209         ok( pass, "Execute a function, Relative" );
210 });
211
212 test("index(Object)", function() {
213         expect(8);
214         ok( $([window, document]).index(window) == 0, "Check for index of elements" );
215         ok( $([window, document]).index(document) == 1, "Check for index of elements" );
216         var inputElements = $('#radio1,#radio2,#check1,#check2');
217         ok( inputElements.index(document.getElementById('radio1')) == 0, "Check for index of elements" );
218         ok( inputElements.index(document.getElementById('radio2')) == 1, "Check for index of elements" );
219         ok( inputElements.index(document.getElementById('check1')) == 2, "Check for index of elements" );
220         ok( inputElements.index(document.getElementById('check2')) == 3, "Check for index of elements" );
221         ok( inputElements.index(window) == -1, "Check for not found index" );
222         ok( inputElements.index(document) == -1, "Check for not found index" );
223 });
224
225 test("attr(String)", function() {
226         expect(13);
227         ok( $('#text1').attr('value') == "Test", 'Check for value attribute' );
228         ok( $('#text1').attr('type') == "text", 'Check for type attribute' );
229         ok( $('#radio1').attr('type') == "radio", 'Check for type attribute' );
230         ok( $('#check1').attr('type') == "checkbox", 'Check for type attribute' );
231         ok( $('#simon1').attr('rel') == "bookmark", 'Check for rel attribute' );
232         ok( $('#google').attr('title') == "Google!", 'Check for title attribute' );
233         ok( $('#mark').attr('hreflang') == "en", 'Check for hreflang attribute' );
234         ok( $('#en').attr('lang') == "en", 'Check for lang attribute' );
235         ok( $('#simon').attr('class') == "blog link", 'Check for class attribute' );
236         ok( $('#name').attr('name') == "name", 'Check for name attribute' );
237         ok( $('#text1').attr('name') == "action", 'Check for name attribute' );
238         ok( $('#form').attr('action').indexOf("formaction") >= 0, 'Check for action attribute' );
239         
240         $('<a id="tAnchor5"></a>').attr('href', '#5').appendTo('#main'); // using innerHTML in IE causes href attribute to be serialized to the full path
241         ok( $('#tAnchor5').attr('href') == "#5", 'Check for non-absolute href (an anchor)' );
242 });
243
244 if ( !isLocal ) {
245     test("attr(String) in XML Files", function() {
246         expect(2);
247         stop();
248         $.get("data/dashboard.xml", function(xml) {
249             ok( $("locations", xml).attr("class") == "foo", "Check class attribute in XML document" );
250             ok( $("location", xml).attr("for") == "bar", "Check for attribute in XML document" );
251             start();
252         });
253     });
254 }
255
256 test("attr(String, Function)", function() {
257         expect(2);
258         ok( $('#text1').attr('value', function() { return this.id })[0].value == "text1", "Set value from id" );
259         ok( $('#text1').attr('title', function(i) { return i }).attr('title') == "0", "Set value with an index");
260 });
261
262 test("attr(Hash)", function() {
263         expect(1);
264         var pass = true;
265         $("div").attr({foo: 'baz', zoo: 'ping'}).each(function(){
266           if ( this.getAttribute('foo') != "baz" && this.getAttribute('zoo') != "ping" ) pass = false;
267         });
268         ok( pass, "Set Multiple Attributes" );
269 });
270
271 test("attr(String, Object)", function() {
272         expect(12);
273         var div = $("div");
274         div.attr("foo", "bar");
275         var pass = true;
276         for ( var i = 0; i < div.size(); i++ ) {
277           if ( div.get(i).getAttribute('foo') != "bar" ) pass = false;
278         }
279         ok( pass, "Set Attribute" );
280
281         ok( $("#foo").attr({"width": null}), "Try to set an attribute to nothing" );    
282         
283         $("#name").attr('name', 'something');
284         ok( $("#name").attr('name') == 'something', 'Set name attribute' );
285         $("#check2").attr('checked', true);
286         ok( document.getElementById('check2').checked == true, 'Set checked attribute' );
287         $("#check2").attr('checked', false);
288         ok( document.getElementById('check2').checked == false, 'Set checked attribute' );
289         $("#text1").attr('readonly', true);
290         ok( document.getElementById('text1').readOnly == true, 'Set readonly attribute' );
291         $("#text1").attr('readonly', false);
292         ok( document.getElementById('text1').readOnly == false, 'Set readonly attribute' );
293         $("#name").attr('maxlength', '5');
294         ok( document.getElementById('name').maxLength == '5', 'Set maxlength attribute' );
295
296         reset();
297
298         var type = $("#check2").attr('type');
299         var thrown = false;
300         try {
301                 $("#check2").attr('type','hidden');
302         } catch(e) {
303                 thrown = true;
304         }
305         ok( thrown, "Exception thrown when trying to change type property" );
306         equals( type, $("#check2").attr('type'), "Verify that you can't change the type of an input element" );
307
308         var check = document.createElement("input");
309         var thrown = true;
310         try {
311                 $(check).attr('type','checkbox');
312         } catch(e) {
313                 thrown = false;
314         }
315         ok( thrown, "Exception thrown when trying to change type property" );
316         equals( "checkbox", $(check).attr('type'), "Verify that you can change the type of an input element that isn't in the DOM" );
317 });
318
319 if ( !isLocal ) {
320     test("attr(String, Object) - Loaded via XML document", function() {
321         expect(2);
322         stop();
323         $.get('data/dashboard.xml', function(xml) { 
324               var titles = [];
325               $('tab', xml).each(function() {
326                     titles.push($(this).attr('title'));
327               });
328               ok( titles[0] == 'Location', 'attr() in XML context: Check first title' );
329               ok( titles[1] == 'Users', 'attr() in XML context: Check second title' );
330               start();
331         });
332     });
333 }
334
335 test("css(String|Hash)", function() {
336         expect(19);
337         
338         ok( $('#main').css("display") == 'none', 'Check for css property "display"');
339         
340         ok( $('#foo').is(':visible'), 'Modifying CSS display: Assert element is visible');
341         $('#foo').css({display: 'none'});
342         ok( !$('#foo').is(':visible'), 'Modified CSS display: Assert element is hidden');
343         $('#foo').css({display: 'block'});
344         ok( $('#foo').is(':visible'), 'Modified CSS display: Assert element is visible');
345         
346         $('#floatTest').css({styleFloat: 'right'});
347         ok( $('#floatTest').css('styleFloat') == 'right', 'Modified CSS float using "styleFloat": Assert float is right');
348         $('#floatTest').css({cssFloat: 'left'});
349         ok( $('#floatTest').css('cssFloat') == 'left', 'Modified CSS float using "cssFloat": Assert float is left');
350         $('#floatTest').css({'float': 'right'});
351         ok( $('#floatTest').css('float') == 'right', 'Modified CSS float using "float": Assert float is right');
352         $('#floatTest').css({'font-size': '30px'});
353         ok( $('#floatTest').css('font-size') == '30px', 'Modified CSS font-size: Assert font-size is 30px');
354         
355         $.each("0,0.25,0.5,0.75,1".split(','), function(i, n) {
356                 $('#foo').css({opacity: n});
357                 ok( $('#foo').css('opacity') == parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a String" );
358                 $('#foo').css({opacity: parseFloat(n)});
359                 ok( $('#foo').css('opacity') == parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a Number" );
360         });     
361         $('#foo').css({opacity: ''});
362         ok( $('#foo').css('opacity') == '1', "Assert opacity is 1 when set to an empty String" );
363 });
364
365 test("css(String, Object)", function() {
366         expect(18);
367         ok( $('#foo').is(':visible'), 'Modifying CSS display: Assert element is visible');
368         $('#foo').css('display', 'none');
369         ok( !$('#foo').is(':visible'), 'Modified CSS display: Assert element is hidden');
370         $('#foo').css('display', 'block');
371         ok( $('#foo').is(':visible'), 'Modified CSS display: Assert element is visible');
372         
373         $('#floatTest').css('styleFloat', 'left');
374         ok( $('#floatTest').css('styleFloat') == 'left', 'Modified CSS float using "styleFloat": Assert float is left');
375         $('#floatTest').css('cssFloat', 'right');
376         ok( $('#floatTest').css('cssFloat') == 'right', 'Modified CSS float using "cssFloat": Assert float is right');
377         $('#floatTest').css('float', 'left');
378         ok( $('#floatTest').css('float') == 'left', 'Modified CSS float using "float": Assert float is left');
379         $('#floatTest').css('font-size', '20px');
380         ok( $('#floatTest').css('font-size') == '20px', 'Modified CSS font-size: Assert font-size is 20px');
381         
382         $.each("0,0.25,0.5,0.75,1".split(','), function(i, n) {
383                 $('#foo').css('opacity', n);
384                 ok( $('#foo').css('opacity') == parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a String" );
385                 $('#foo').css('opacity', parseFloat(n));
386                 ok( $('#foo').css('opacity') == parseFloat(n), "Assert opacity is " + parseFloat(n) + " as a Number" );
387         });
388         $('#foo').css('opacity', '');
389         ok( $('#foo').css('opacity') == '1', "Assert opacity is 1 when set to an empty String" );
390 });
391
392 test("text()", function() {
393         expect(1);
394         var expected = "This link has class=\"blog\": Simon Willison's Weblog";
395         ok( $('#sap').text() == expected, 'Check for merged text of more then one element.' );
396 });
397
398 test("wrap(String|Element)", function() {
399         expect(6);
400         var defaultText = 'Try them out:'
401         var result = $('#first').wrap('<div class="red"><span></span></div>').text();
402         ok( defaultText == result, 'Check for wrapping of on-the-fly html' );
403         ok( $('#first').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
404
405         reset();
406         var defaultText = 'Try them out:'
407         var result = $('#first').wrap(document.getElementById('empty')).parent();
408         ok( result.is('ol'), 'Check for element wrapping' );
409         ok( result.text() == defaultText, 'Check for element wrapping' );
410         
411         reset();
412         $('#check1').click(function() {         
413                 var checkbox = this;            
414                 ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );
415                 $(checkbox).wrap( '<div id="c1" style="display:none;"></div>' );
416                 ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );
417         }).click();
418 });
419
420 test("wrapAll(String|Element)", function() {
421         expect(8);
422         var prev = $("#first")[0].previousSibling;
423         var p = $("#first")[0].parentNode;
424         var result = $('#first,#firstp').wrapAll('<div class="red"><div id="tmp"></div></div>');
425         equals( result.parent().length, 1, 'Check for wrapping of on-the-fly html' );
426         ok( $('#first').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
427         ok( $('#firstp').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
428         equals( $("#first").parent().parent()[0].previousSibling, prev, "Correct Previous Sibling" );
429         equals( $("#first").parent().parent()[0].parentNode, p, "Correct Parent" );
430
431         reset();
432         var prev = $("#first")[0].previousSibling;
433         var p = $("#first")[0].parentNode;
434         var result = $('#first,#firstp').wrapAll(document.getElementById('empty'));
435         equals( $("#first").parent()[0], $("#firstp").parent()[0], "Same Parent" );
436         equals( $("#first").parent()[0].previousSibling, prev, "Correct Previous Sibling" );
437         equals( $("#first").parent()[0].parentNode, p, "Correct Parent" );
438 });
439
440 test("wrapInner(String|Element)", function() {
441         expect(6);
442         var num = $("#first").children().length;
443         var result = $('#first').wrapInner('<div class="red"><div id="tmp"></div></div>');
444         equals( $("#first").children().length, 1, "Only one child" );
445         ok( $("#first").children().is(".red"), "Verify Right Element" );
446         equals( $("#first").children().children().children().length, num, "Verify Elements Intact" );
447
448         reset();
449         var num = $("#first").children().length;
450         var result = $('#first').wrapInner(document.getElementById('empty'));
451         equals( $("#first").children().length, 1, "Only one child" );
452         ok( $("#first").children().is("#empty"), "Verify Right Element" );
453         equals( $("#first").children().children().length, num, "Verify Elements Intact" );
454 });
455
456 test("append(String|Element|Array&lt;Element&gt;|jQuery)", function() {
457         expect(18);
458         var defaultText = 'Try them out:'
459         var result = $('#first').append('<b>buga</b>');
460         ok( result.text() == defaultText + 'buga', 'Check if text appending works' );
461         ok( $('#select3').append('<option value="appendTest">Append Test</option>').find('option:last-child').attr('value') == 'appendTest', 'Appending html options to select element');
462         
463         reset();
464         var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
465         $('#sap').append(document.getElementById('first'));
466         ok( expected == $('#sap').text(), "Check for appending of element" );
467         
468         reset();
469         expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
470         $('#sap').append([document.getElementById('first'), document.getElementById('yahoo')]);
471         ok( expected == $('#sap').text(), "Check for appending of array of elements" );
472         
473         reset();
474         expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
475         $('#sap').append($("#first, #yahoo"));
476         ok( expected == $('#sap').text(), "Check for appending of jQuery object" );
477
478         reset();
479         $("#sap").append( 5 );
480         ok( $("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );
481
482         reset();
483         $("#sap").append( " text with spaces " );
484         ok( $("#sap")[0].innerHTML.match(/ text with spaces $/), "Check for appending text with spaces" );
485
486         reset();
487         ok( $("#sap").append([]), "Check for appending an empty array." );
488         ok( $("#sap").append(""), "Check for appending an empty string." );
489         ok( $("#sap").append(document.getElementsByTagName("foo")), "Check for appending an empty nodelist." );
490         
491         reset();
492         $("#sap").append(document.getElementById('form'));
493         ok( $("#sap>form").size() == 1, "Check for appending a form" );  // Bug #910
494
495         reset();
496         var pass = true;
497         try {
498                 $( $("iframe")[0].contentWindow.document.body ).append("<div>test</div>");
499         } catch(e) {
500                 pass = false;
501         }
502
503         ok( pass, "Test for appending a DOM node to the contents of an IFrame" );
504         
505         reset();
506         $('<fieldset/>').appendTo('#form').append('<legend id="legend">test</legend>');
507         t( 'Append legend', '#legend', ['legend'] );
508         
509         reset();
510         $('#select1').append('<OPTION>Test</OPTION>');
511         ok( $('#select1 option:last').text() == "Test", "Appending &lt;OPTION&gt; (all caps)" );
512         
513         $('#table').append('<colgroup></colgroup>');
514         ok( $('#table colgroup').length, "Append colgroup" );
515         
516         $('#table colgroup').append('<col/>');
517         ok( $('#table colgroup col').length, "Append col" );
518         
519         reset();
520         $('#table').append('<caption></caption>');
521         ok( $('#table caption').length, "Append caption" );
522
523         reset();
524         $('form:last')
525                 .append('<select id="appendSelect1"></select>')
526                 .append('<select id="appendSelect2"><option>Test</option></select>');
527         
528         t( "Append Select", "#appendSelect1, #appendSelect2", ["appendSelect1", "appendSelect2"] );
529 });
530
531 test("appendTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
532         expect(6);
533         var defaultText = 'Try them out:'
534         $('<b>buga</b>').appendTo('#first');
535         ok( $("#first").text() == defaultText + 'buga', 'Check if text appending works' );
536         ok( $('<option value="appendTest">Append Test</option>').appendTo('#select3').parent().find('option:last-child').attr('value') == 'appendTest', 'Appending html options to select element');
537         
538         reset();
539         var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
540         $(document.getElementById('first')).appendTo('#sap');
541         ok( expected == $('#sap').text(), "Check for appending of element" );
542         
543         reset();
544         expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
545         $([document.getElementById('first'), document.getElementById('yahoo')]).appendTo('#sap');
546         ok( expected == $('#sap').text(), "Check for appending of array of elements" );
547         
548         reset();
549         expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
550         $("#first, #yahoo").appendTo('#sap');
551         ok( expected == $('#sap').text(), "Check for appending of jQuery object" );
552         
553         reset();
554         $('#select1').appendTo('#foo');
555         t( 'Append select', '#foo select', ['select1'] );
556 });
557
558 test("prepend(String|Element|Array&lt;Element&gt;|jQuery)", function() {
559         expect(5);
560         var defaultText = 'Try them out:'
561         var result = $('#first').prepend('<b>buga</b>');
562         ok( result.text() == 'buga' + defaultText, 'Check if text prepending works' );
563         ok( $('#select3').prepend('<option value="prependTest">Prepend Test</option>').find('option:first-child').attr('value') == 'prependTest', 'Prepending html options to select element');
564         
565         reset();
566         var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
567         $('#sap').prepend(document.getElementById('first'));
568         ok( expected == $('#sap').text(), "Check for prepending of element" );
569
570         reset();
571         expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
572         $('#sap').prepend([document.getElementById('first'), document.getElementById('yahoo')]);
573         ok( expected == $('#sap').text(), "Check for prepending of array of elements" );
574         
575         reset();
576         expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
577         $('#sap').prepend($("#first, #yahoo"));
578         ok( expected == $('#sap').text(), "Check for prepending of jQuery object" );
579 });
580
581 test("prependTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
582         expect(6);
583         var defaultText = 'Try them out:'
584         $('<b>buga</b>').prependTo('#first');
585         ok( $('#first').text() == 'buga' + defaultText, 'Check if text prepending works' );
586         ok( $('<option value="prependTest">Prepend Test</option>').prependTo('#select3').parent().find('option:first-child').attr('value') == 'prependTest', 'Prepending html options to select element');
587         
588         reset();
589         var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
590         $(document.getElementById('first')).prependTo('#sap');
591         ok( expected == $('#sap').text(), "Check for prepending of element" );
592
593         reset();
594         expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
595         $([document.getElementById('yahoo'), document.getElementById('first')]).prependTo('#sap');
596         ok( expected == $('#sap').text(), "Check for prepending of array of elements" );
597         
598         reset();
599         expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
600         $("#yahoo, #first").prependTo('#sap');
601         ok( expected == $('#sap').text(), "Check for prepending of jQuery object" );
602         
603         reset();
604         $('<select id="prependSelect1"></select>').prependTo('form:last');
605         $('<select id="prependSelect2"><option>Test</option></select>').prependTo('form:last');
606         
607         t( "Prepend Select", "#prependSelect1, #prependSelect2", ["prependSelect1", "prependSelect2"] );
608 });
609
610 test("before(String|Element|Array&lt;Element&gt;|jQuery)", function() {
611         expect(4);
612         var expected = 'This is a normal link: bugaYahoo';
613         $('#yahoo').before('<b>buga</b>');
614         ok( expected == $('#en').text(), 'Insert String before' );
615         
616         reset();
617         expected = "This is a normal link: Try them out:Yahoo";
618         $('#yahoo').before(document.getElementById('first'));
619         ok( expected == $('#en').text(), "Insert element before" );
620         
621         reset();
622         expected = "This is a normal link: Try them out:diveintomarkYahoo";
623         $('#yahoo').before([document.getElementById('first'), document.getElementById('mark')]);
624         ok( expected == $('#en').text(), "Insert array of elements before" );
625         
626         reset();
627         expected = "This is a normal link: Try them out:diveintomarkYahoo";
628         $('#yahoo').before($("#first, #mark"));
629         ok( expected == $('#en').text(), "Insert jQuery before" );
630 });
631
632 test("insertBefore(String|Element|Array&lt;Element&gt;|jQuery)", function() {
633         expect(4);
634         var expected = 'This is a normal link: bugaYahoo';
635         $('<b>buga</b>').insertBefore('#yahoo');
636         ok( expected == $('#en').text(), 'Insert String before' );
637         
638         reset();
639         expected = "This is a normal link: Try them out:Yahoo";
640         $(document.getElementById('first')).insertBefore('#yahoo');
641         ok( expected == $('#en').text(), "Insert element before" );
642         
643         reset();
644         expected = "This is a normal link: Try them out:diveintomarkYahoo";
645         $([document.getElementById('first'), document.getElementById('mark')]).insertBefore('#yahoo');
646         ok( expected == $('#en').text(), "Insert array of elements before" );
647         
648         reset();
649         expected = "This is a normal link: Try them out:diveintomarkYahoo";
650         $("#first, #mark").insertBefore('#yahoo');
651         ok( expected == $('#en').text(), "Insert jQuery before" );
652 });
653
654 test("after(String|Element|Array&lt;Element&gt;|jQuery)", function() {
655         expect(4);
656         var expected = 'This is a normal link: Yahoobuga';
657         $('#yahoo').after('<b>buga</b>');
658         ok( expected == $('#en').text(), 'Insert String after' );
659         
660         reset();
661         expected = "This is a normal link: YahooTry them out:";
662         $('#yahoo').after(document.getElementById('first'));
663         ok( expected == $('#en').text(), "Insert element after" );
664
665         reset();
666         expected = "This is a normal link: YahooTry them out:diveintomark";
667         $('#yahoo').after([document.getElementById('first'), document.getElementById('mark')]);
668         ok( expected == $('#en').text(), "Insert array of elements after" );
669         
670         reset();
671         expected = "This is a normal link: YahooTry them out:diveintomark";
672         $('#yahoo').after($("#first, #mark"));
673         ok( expected == $('#en').text(), "Insert jQuery after" );
674 });
675
676 test("insertAfter(String|Element|Array&lt;Element&gt;|jQuery)", function() {
677         expect(4);
678         var expected = 'This is a normal link: Yahoobuga';
679         $('<b>buga</b>').insertAfter('#yahoo');
680         ok( expected == $('#en').text(), 'Insert String after' );
681         
682         reset();
683         expected = "This is a normal link: YahooTry them out:";
684         $(document.getElementById('first')).insertAfter('#yahoo');
685         ok( expected == $('#en').text(), "Insert element after" );
686
687         reset();
688         expected = "This is a normal link: YahooTry them out:diveintomark";
689         $([document.getElementById('mark'), document.getElementById('first')]).insertAfter('#yahoo');
690         ok( expected == $('#en').text(), "Insert array of elements after" );
691         
692         reset();
693         expected = "This is a normal link: YahooTry them out:diveintomark";
694         $("#mark, #first").insertAfter('#yahoo');
695         ok( expected == $('#en').text(), "Insert jQuery after" );
696 });
697
698 test("replaceWith(String|Element|Array&lt;Element&gt;|jQuery)", function() {
699         expect(10);
700         $('#yahoo').replaceWith('<b id="replace">buga</b>');
701         ok( $("#replace")[0], 'Replace element with string' );
702         ok( !$("#yahoo")[0], 'Verify that original element is gone, after string' );
703         
704         reset();
705         $('#yahoo').replaceWith(document.getElementById('first'));
706         ok( $("#first")[0], 'Replace element with element' );
707         ok( !$("#yahoo")[0], 'Verify that original element is gone, after element' );
708
709         reset();
710         $('#yahoo').replaceWith([document.getElementById('first'), document.getElementById('mark')]);
711         ok( $("#first")[0], 'Replace element with array of elements' );
712         ok( $("#mark")[0], 'Replace element with array of elements' );
713         ok( !$("#yahoo")[0], 'Verify that original element is gone, after array of elements' );
714         
715         reset();
716         $('#yahoo').replaceWith($("#first, #mark"));
717         ok( $("#first")[0], 'Replace element with set of elements' );
718         ok( $("#mark")[0], 'Replace element with set of elements' );
719         ok( !$("#yahoo")[0], 'Verify that original element is gone, after set of elements' );
720 });
721
722 test("replaceAll(String|Element|Array&lt;Element&gt;|jQuery)", function() {
723         expect(10);
724         $('<b id="replace">buga</b>').replaceAll("#yahoo");
725         ok( $("#replace")[0], 'Replace element with string' );
726         ok( !$("#yahoo")[0], 'Verify that original element is gone, after string' );
727         
728         reset();
729         $(document.getElementById('first')).replaceAll("#yahoo");
730         ok( $("#first")[0], 'Replace element with element' );
731         ok( !$("#yahoo")[0], 'Verify that original element is gone, after element' );
732
733         reset();
734         $([document.getElementById('first'), document.getElementById('mark')]).replaceAll("#yahoo");
735         ok( $("#first")[0], 'Replace element with array of elements' );
736         ok( $("#mark")[0], 'Replace element with array of elements' );
737         ok( !$("#yahoo")[0], 'Verify that original element is gone, after array of elements' );
738         
739         reset();
740         $("#first, #mark").replaceAll("#yahoo");
741         ok( $("#first")[0], 'Replace element with set of elements' );
742         ok( $("#mark")[0], 'Replace element with set of elements' );
743         ok( !$("#yahoo")[0], 'Verify that original element is gone, after set of elements' );
744 });
745
746 test("end()", function() {
747         expect(3);
748         ok( 'Yahoo' == $('#yahoo').parent().end().text(), 'Check for end' );
749         ok( $('#yahoo').end(), 'Check for end with nothing to end' );
750         
751         var x = $('#yahoo');
752         x.parent();
753         ok( 'Yahoo' == $('#yahoo').text(), 'Check for non-destructive behaviour' );
754 });
755
756 test("find(String)", function() {
757         expect(1);
758         ok( 'Yahoo' == $('#foo').find('.blogTest').text(), 'Check for find' );
759 });
760
761 test("clone()", function() {
762         expect(3);
763         ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Assert text for #en' );
764         var clone = $('#yahoo').clone();
765         ok( 'Try them out:Yahoo' == $('#first').append(clone).text(), 'Check for clone' );
766         ok( 'This is a normal link: Yahoo' == $('#en').text(), 'Reassert text for #en' );
767 });
768
769 test("is(String)", function() {
770         expect(26);
771         ok( $('#form').is('form'), 'Check for element: A form must be a form' );
772         ok( !$('#form').is('div'), 'Check for element: A form is not a div' );
773         ok( $('#mark').is('.blog'), 'Check for class: Expected class "blog"' );
774         ok( !$('#mark').is('.link'), 'Check for class: Did not expect class "link"' );
775         ok( $('#simon').is('.blog.link'), 'Check for multiple classes: Expected classes "blog" and "link"' );
776         ok( !$('#simon').is('.blogTest'), 'Check for multiple classes: Expected classes "blog" and "link", but not "blogTest"' );
777         ok( $('#en').is('[lang="en"]'), 'Check for attribute: Expected attribute lang to be "en"' );
778         ok( !$('#en').is('[lang="de"]'), 'Check for attribute: Expected attribute lang to be "en", not "de"' );
779         ok( $('#text1').is('[type="text"]'), 'Check for attribute: Expected attribute type to be "text"' );
780         ok( !$('#text1').is('[type="radio"]'), 'Check for attribute: Expected attribute type to be "text", not "radio"' );
781         ok( $('#text2').is(':disabled'), 'Check for pseudoclass: Expected to be disabled' );
782         ok( !$('#text1').is(':disabled'), 'Check for pseudoclass: Expected not disabled' );
783         ok( $('#radio2').is(':checked'), 'Check for pseudoclass: Expected to be checked' );
784         ok( !$('#radio1').is(':checked'), 'Check for pseudoclass: Expected not checked' );
785         ok( $('#foo').is(':has(p)'), 'Check for child: Expected a child "p" element' );
786         ok( !$('#foo').is(':has(ul)'), 'Check for child: Did not expect "ul" element' );
787         ok( $('#foo').is(':has(p):has(a):has(code)'), 'Check for childs: Expected "p", "a" and "code" child elements' );
788         ok( !$('#foo').is(':has(p):has(a):has(code):has(ol)'), 'Check for childs: Expected "p", "a" and "code" child elements, but no "ol"' );
789         ok( !$('#foo').is(0), 'Expected false for an invalid expression - 0' );
790         ok( !$('#foo').is(null), 'Expected false for an invalid expression - null' );
791         ok( !$('#foo').is(''), 'Expected false for an invalid expression - ""' );
792         ok( !$('#foo').is(undefined), 'Expected false for an invalid expression - undefined' );
793         
794         // test is() with comma-seperated expressions
795         ok( $('#en').is('[lang="en"],[lang="de"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
796         ok( $('#en').is('[lang="de"],[lang="en"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
797         ok( $('#en').is('[lang="en"] , [lang="de"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
798         ok( $('#en').is('[lang="de"] , [lang="en"]'), 'Comma-seperated; Check for lang attribute: Expect en or de' );
799 });
800
801 test("$.extend(Object, Object)", function() {
802         expect(11);
803
804         var settings = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
805                 options =     { xnumber2: 1, xstring2: "x", xxx: "newstring" },
806                 optionsCopy = { xnumber2: 1, xstring2: "x", xxx: "newstring" },
807                 merged = { xnumber1: 5, xnumber2: 1, xstring1: "peter", xstring2: "x", xxx: "newstring" },
808                 deep1 = { foo: { bar: true } },
809                 deep1copy = { foo: { bar: true } },
810                 deep2 = { foo: { baz: true }, foo2: document },
811                 deep2copy = { foo: { baz: true }, foo2: document },
812                 deepmerged = { foo: { bar: true, baz: true }, foo2: document };
813
814         jQuery.extend(settings, options);
815         isObj( settings, merged, "Check if extended: settings must be extended" );
816         isObj( options, optionsCopy, "Check if not modified: options must not be modified" );
817
818         jQuery.extend(settings, null, options);
819         isObj( settings, merged, "Check if extended: settings must be extended" );
820         isObj( options, optionsCopy, "Check if not modified: options must not be modified" );
821
822         jQuery.extend(true, deep1, deep2);
823         isObj( deep1.foo, deepmerged.foo, "Check if foo: settings must be extended" );
824         isObj( deep2.foo, deep2copy.foo, "Check if not deep2: options must not be modified" );
825         equals( deep1.foo2, document, "Make sure that a deep clone was not attempted on the document" );
826
827         var defaults = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
828                 defaultsCopy = { xnumber1: 5, xnumber2: 7, xstring1: "peter", xstring2: "pan" },
829                 options1 =     { xnumber2: 1, xstring2: "x" },
830                 options1Copy = { xnumber2: 1, xstring2: "x" },
831                 options2 =     { xstring2: "xx", xxx: "newstringx" },
832                 options2Copy = { xstring2: "xx", xxx: "newstringx" },
833                 merged2 = { xnumber1: 5, xnumber2: 1, xstring1: "peter", xstring2: "xx", xxx: "newstringx" };
834
835         var settings = jQuery.extend({}, defaults, options1, options2);
836         isObj( settings, merged2, "Check if extended: settings must be extended" );
837         isObj( defaults, defaultsCopy, "Check if not modified: options1 must not be modified" );
838         isObj( options1, options1Copy, "Check if not modified: options1 must not be modified" );
839         isObj( options2, options2Copy, "Check if not modified: options2 must not be modified" );
840 });
841
842 test("val()", function() {
843         expect(2);
844         ok( $("#text1").val() == "Test", "Check for value of input element" );
845         ok( !$("#text1").val() == "", "Check for value of input element" );
846 });
847
848 test("val(String)", function() {
849         expect(3);
850         document.getElementById('text1').value = "bla";
851         ok( $("#text1").val() == "bla", "Check for modified value of input element" );
852         $("#text1").val('test');
853         ok ( document.getElementById('text1').value == "test", "Check for modified (via val(String)) value of input element" );
854         
855         $("#select1").val("3");
856         ok( $("#select1").val() == "3", "Check for modified (via val(String)) value of select element" );
857 });
858
859 var scriptorder = 0;
860
861 test("html(String)", function() {
862         expect(9);
863         var div = $("div");
864         div.html("<b>test</b>");
865         var pass = true;
866         for ( var i = 0; i < div.size(); i++ ) {
867           if ( div.get(i).childNodes.length == 0 ) pass = false;
868         }
869         ok( pass, "Set HTML" );
870
871         stop();
872
873         $("#main").html('<script type="text/javascript">ok( true, "$().html().evalScripts() Evals Scripts Twice in Firefox, see #975" );</script>');
874
875         $("#main").html('foo <form><script type="text/javascript">ok( true, "$().html().evalScripts() Evals Scripts Twice in Firefox, see #975" );</script></form>');
876
877         $("#main").html("<script>ok(scriptorder++ == 0, 'Script is executed in order');ok($('#scriptorder').length == 0,'Execute before html')<\/script><span id='scriptorder'><script>ok(scriptorder++ == 1, 'Script is executed in order');ok($('#scriptorder').length == 1,'Execute after html')<\/script></span><script>ok(scriptorder++ == 2, 'Script is executed in order');ok($('#scriptorder').length == 1,'Execute after html')<\/script>");
878
879         setTimeout( start, 100 );
880 });
881
882 test("filter()", function() {
883         expect(4);
884         isSet( $("#form input").filter(":checked").get(), q("radio2", "check1"), "filter(String)" );
885         isSet( $("p").filter("#ap, #sndp").get(), q("ap", "sndp"), "filter('String, String')" );
886         isSet( $("p").filter("#ap,#sndp").get(), q("ap", "sndp"), "filter('String,String')" );
887         isSet( $("p").filter(function() { return !$("a", this).length }).get(), q("sndp", "first"), "filter(Function)" );
888 });
889
890 test("not()", function() {
891         expect(3);
892         ok( $("#main > p#ap > a").not("#google").length == 2, "not('selector')" );
893         isSet( $("p").not("#ap, #sndp, .result").get(), q("firstp", "en", "sap", "first"), "not('selector, selector')" );
894         isSet( $("p").not($("#ap, #sndp, .result")).get(), q("firstp", "en", "sap", "first"), "not(jQuery)" );
895 });
896
897 test("andSelf()", function() {
898         expect(4);
899         isSet( $("#en").siblings().andSelf().get(), q("sndp", "sap","en"), "Check for siblings and self" );
900         isSet( $("#foo").children().andSelf().get(), q("sndp", "en", "sap", "foo"), "Check for children and self" );
901         isSet( $("#en, #sndp").parent().andSelf().get(), q("foo","en","sndp"), "Check for parent and self" );
902         isSet( $("#groups").parents("p, div").andSelf().get(), q("ap", "main", "groups"), "Check for parents and self" );
903 });
904
905 test("siblings([String])", function() {
906         expect(5);
907         isSet( $("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" );
908         isSet( $("#sndp").siblings(":has(code)").get(), q("sap"), "Check for filtered siblings (has code child element)" ); 
909         isSet( $("#sndp").siblings(":has(a)").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
910         isSet( $("#foo").siblings("form, b").get(), q("form", "lengthtest", "testForm", "floatTest"), "Check for multiple filters" );
911         isSet( $("#en, #sndp").siblings().get(), q("sndp", "sap", "en"), "Check for unique results from siblings" );
912 });
913
914 test("children([String])", function() {
915         expect(3);
916         isSet( $("#foo").children().get(), q("sndp", "en", "sap"), "Check for children" );
917         isSet( $("#foo").children(":has(code)").get(), q("sndp", "sap"), "Check for filtered children" );
918         isSet( $("#foo").children("#en, #sap").get(), q("en", "sap"), "Check for multiple filters" );
919 });
920
921 test("parent([String])", function() {
922         expect(5);
923         ok( $("#groups").parent()[0].id == "ap", "Simple parent check" );
924         ok( $("#groups").parent("p")[0].id == "ap", "Filtered parent check" );
925         ok( $("#groups").parent("div").length == 0, "Filtered parent check, no match" );
926         ok( $("#groups").parent("div, p")[0].id == "ap", "Check for multiple filters" );
927         isSet( $("#en, #sndp").parent().get(), q("foo"), "Check for unique results from parent" );
928 });
929         
930 test("parents([String])", function() {
931         expect(5);
932         ok( $("#groups").parents()[0].id == "ap", "Simple parents check" );
933         ok( $("#groups").parents("p")[0].id == "ap", "Filtered parents check" );
934         ok( $("#groups").parents("div")[0].id == "main", "Filtered parents check2" );
935         isSet( $("#groups").parents("p, div").get(), q("ap", "main"), "Check for multiple filters" );
936         isSet( $("#en, #sndp").parents().get(), q("foo", "main", "dl", "body", "html"), "Check for unique results from parents" );
937 });
938
939 test("next([String])", function() {
940         expect(4);
941         ok( $("#ap").next()[0].id == "foo", "Simple next check" );
942         ok( $("#ap").next("div")[0].id == "foo", "Filtered next check" );
943         ok( $("#ap").next("p").length == 0, "Filtered next check, no match" );
944         ok( $("#ap").next("div, p")[0].id == "foo", "Multiple filters" );
945 });
946         
947 test("prev([String])", function() {
948         expect(4);
949         ok( $("#foo").prev()[0].id == "ap", "Simple prev check" );
950         ok( $("#foo").prev("p")[0].id == "ap", "Filtered prev check" );
951         ok( $("#foo").prev("div").length == 0, "Filtered prev check, no match" );
952         ok( $("#foo").prev("p, div")[0].id == "ap", "Multiple filters" );
953 });
954
955 test("show()", function() {
956         expect(1);
957         var pass = true, div = $("div");
958         div.show().each(function(){
959           if ( this.style.display == "none" ) pass = false;
960         });
961         ok( pass, "Show" );
962 });
963
964 test("addClass(String)", function() {
965         expect(1);
966         var div = $("div");
967         div.addClass("test");
968         var pass = true;
969         for ( var i = 0; i < div.size(); i++ ) {
970          if ( div.get(i).className.indexOf("test") == -1 ) pass = false;
971         }
972         ok( pass, "Add Class" );
973 });
974
975 test("removeClass(String) - simple", function() {
976         expect(3);
977         var div = $("div").addClass("test").removeClass("test"),
978                 pass = true;
979         for ( var i = 0; i < div.size(); i++ ) {
980                 if ( div.get(i).className.indexOf("test") != -1 ) pass = false;
981         }
982         ok( pass, "Remove Class" );
983         
984         reset();
985         var div = $("div").addClass("test").addClass("foo").addClass("bar");
986         div.removeClass("test").removeClass("bar").removeClass("foo");
987         var pass = true;
988         for ( var i = 0; i < div.size(); i++ ) {
989          if ( div.get(i).className.match(/test|bar|foo/) ) pass = false;
990         }
991         ok( pass, "Remove multiple classes" );
992         
993         reset();
994         var div = $("div:eq(0)").addClass("test").removeClass("");
995         ok( div.is('.test'), "Empty string passed to removeClass" );
996         
997 });
998
999 test("toggleClass(String)", function() {
1000         expect(3);
1001         var e = $("#firstp");
1002         ok( !e.is(".test"), "Assert class not present" );
1003         e.toggleClass("test");
1004         ok( e.is(".test"), "Assert class present" ); 
1005         e.toggleClass("test");
1006         ok( !e.is(".test"), "Assert class not present" );
1007 });
1008
1009 test("removeAttr(String", function() {
1010         expect(1);
1011         ok( $('#mark').removeAttr("class")[0].className == "", "remove class" );
1012 });
1013
1014 test("text(String)", function() {
1015         expect(1);
1016         ok( $("#foo").text("<div><b>Hello</b> cruel world!</div>")[0].innerHTML == "&lt;div&gt;&lt;b&gt;Hello&lt;/b&gt; cruel world!&lt;/div&gt;", "Check escaped text" );
1017 });
1018
1019 test("$.each(Object,Function)", function() {
1020         expect(8);
1021         $.each( [0,1,2], function(i, n){
1022                 ok( i == n, "Check array iteration" );
1023         });
1024         
1025         $.each( [5,6,7], function(i, n){
1026                 ok( i == n - 5, "Check array iteration" );
1027         });
1028          
1029         $.each( { name: "name", lang: "lang" }, function(i, n){
1030                 ok( i == n, "Check object iteration" );
1031         });
1032 });
1033
1034 test("$.prop", function() {
1035         expect(2);
1036         var handle = function() { return this.id };
1037         ok( $.prop($("#ap")[0], handle) == "ap", "Check with Function argument" );
1038         ok( $.prop($("#ap")[0], "value") == "value", "Check with value argument" );
1039 });
1040
1041 test("$.className", function() {
1042         expect(6);
1043         var x = $("<p>Hi</p>")[0];
1044         var c = $.className;
1045         c.add(x, "hi");
1046         ok( x.className == "hi", "Check single added class" );
1047         c.add(x, "foo bar");
1048         ok( x.className == "hi foo bar", "Check more added classes" );
1049         c.remove(x);
1050         ok( x.className == "", "Remove all classes" );
1051         c.add(x, "hi foo bar");
1052         c.remove(x, "foo");
1053         ok( x.className == "hi bar", "Check removal of one class" );
1054         ok( c.has(x, "hi"), "Check has1" );
1055         ok( c.has(x, "bar"), "Check has2" );
1056 });
1057
1058 test("remove()", function() {
1059         expect(4);
1060         $("#ap").children().remove();
1061         ok( $("#ap").text().length > 10, "Check text is not removed" );
1062         ok( $("#ap").children().length == 0, "Check remove" );
1063         
1064         reset();
1065         $("#ap").children().remove("a");
1066         ok( $("#ap").text().length > 10, "Check text is not removed" );
1067         ok( $("#ap").children().length == 1, "Check filtered remove" );
1068 });
1069
1070 test("empty()", function() {
1071         expect(2);
1072         ok( $("#ap").children().empty().text().length == 0, "Check text is removed" );
1073         ok( $("#ap").children().length == 4, "Check elements are not removed" );
1074 });
1075
1076 test("slice()", function() {
1077         expect(5);
1078         isSet( $("#ap a").slice(1,2), q("groups"), "slice(1,2)" );
1079         isSet( $("#ap a").slice(1), q("groups", "anchor1", "mark"), "slice(1)" );
1080         isSet( $("#ap a").slice(0,3), q("google", "groups", "anchor1"), "slice(0,3)" );
1081         isSet( $("#ap a").slice(-1), q("mark"), "slice(-1)" );
1082
1083         isSet( $("#ap a").eq(1), q("groups"), "eq(1)" );
1084 });
1085
1086 test("map()", function() {
1087         expect(2);
1088
1089         isSet(
1090                 $("#ap").map(function(){
1091                         return $(this).find("a").get();
1092                 }),
1093                 q("google", "groups", "anchor1", "mark"),
1094                 "Array Map"
1095         );
1096
1097         isSet(
1098                 $("#ap > a").map(function(){
1099                         return this.parentNode;
1100                 }),
1101                 q("ap","ap","ap"),
1102                 "Single Map"
1103         );
1104 });
1105
1106 test("contents()", function() {
1107         expect(2);
1108         equals( $("#ap").contents().length, 9, "Check element contents" );
1109         ok( $("#iframe").contents()[0], "Check existance of IFrame document" );
1110         // Disabled, randomly fails
1111         //ok( $("#iframe").contents()[0].body, "Check existance of IFrame body" );
1112 });