Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / jquery / resources / test / unit / manipulation.js
blob34425ed3a4c9c54ca795b823f022c3fa6560b3f5
1 module("manipulation", { teardown: moduleTeardown });
3 // Ensure that an extended Array prototype doesn't break jQuery
4 Array.prototype.arrayProtoFn = function(arg) { throw("arrayProtoFn should not be called"); };
6 var bareObj = function(value) { return value; };
7 var functionReturningObj = function(value) { return (function() { return value; }); };
9 test("text()", function() {
10 expect(2);
11 var expected = "This link has class=\"blog\": Simon Willison's Weblog";
12 equals( jQuery('#sap').text(), expected, 'Check for merged text of more then one element.' );
14 // Check serialization of text values
15 equals( jQuery(document.createTextNode("foo")).text(), "foo", "Text node was retreived from .text()." );
16 });
18 var testText = function(valueObj) {
19 expect(4);
20 var val = valueObj("<div><b>Hello</b> cruel world!</div>");
21 equals( jQuery("#foo").text(val)[0].innerHTML.replace(/>/g, "&gt;"), "&lt;div&gt;&lt;b&gt;Hello&lt;/b&gt; cruel world!&lt;/div&gt;", "Check escaped text" );
23 // using contents will get comments regular, text, and comment nodes
24 var j = jQuery("#nonnodes").contents();
25 j.text(valueObj("hi!"));
26 equals( jQuery(j[0]).text(), "hi!", "Check node,textnode,comment with text()" );
27 equals( j[1].nodeValue, " there ", "Check node,textnode,comment with text()" );
29 // Blackberry 4.6 doesn't maintain comments in the DOM
30 equals( jQuery("#nonnodes")[0].childNodes.length < 3 ? 8 : j[2].nodeType, 8, "Check node,textnode,comment with text()" );
33 test("text(String)", function() {
34 testText(bareObj)
35 });
37 test("text(Function)", function() {
38 testText(functionReturningObj);
39 });
41 test("text(Function) with incoming value", function() {
42 expect(2);
44 var old = "This link has class=\"blog\": Simon Willison's Weblog";
46 jQuery('#sap').text(function(i, val) {
47 equals( val, old, "Make sure the incoming value is correct." );
48 return "foobar";
49 });
51 equals( jQuery("#sap").text(), "foobar", 'Check for merged text of more then one element.' );
53 QUnit.reset();
54 });
56 var testWrap = function(val) {
57 expect(19);
58 var defaultText = 'Try them out:'
59 var result = jQuery('#first').wrap(val( '<div class="red"><span></span></div>' )).text();
60 equals( defaultText, result, 'Check for wrapping of on-the-fly html' );
61 ok( jQuery('#first').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
63 QUnit.reset();
64 var defaultText = 'Try them out:'
65 var result = jQuery('#first').wrap(val( document.getElementById('empty') )).parent();
66 ok( result.is('ol'), 'Check for element wrapping' );
67 equals( result.text(), defaultText, 'Check for element wrapping' );
69 QUnit.reset();
70 jQuery('#check1').click(function() {
71 var checkbox = this;
72 ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );
73 jQuery(checkbox).wrap(val( '<div id="c1" style="display:none;"></div>' ));
74 ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );
75 }).click();
77 // using contents will get comments regular, text, and comment nodes
78 var j = jQuery("#nonnodes").contents();
79 j.wrap(val( "<i></i>" ));
81 // Blackberry 4.6 doesn't maintain comments in the DOM
82 equals( jQuery("#nonnodes > i").length, jQuery("#nonnodes")[0].childNodes.length, "Check node,textnode,comment wraps ok" );
83 equals( jQuery("#nonnodes > i").text(), j.text(), "Check node,textnode,comment wraps doesn't hurt text" );
85 // Try wrapping a disconnected node
86 var cacheLength = 0;
87 for (var i in jQuery.cache) {
88 cacheLength++;
91 j = jQuery("<label/>").wrap(val( "<li/>" ));
92 equals( j[0].nodeName.toUpperCase(), "LABEL", "Element is a label" );
93 equals( j[0].parentNode.nodeName.toUpperCase(), "LI", "Element has been wrapped" );
95 for (i in jQuery.cache) {
96 cacheLength--;
98 equals(cacheLength, 0, "No memory leak in jQuery.cache (bug #7165)");
100 // Wrap an element containing a text node
101 j = jQuery("<span/>").wrap("<div>test</div>");
102 equals( j[0].previousSibling.nodeType, 3, "Make sure the previous node is a text element" );
103 equals( j[0].parentNode.nodeName.toUpperCase(), "DIV", "And that we're in the div element." );
105 // Try to wrap an element with multiple elements (should fail)
106 j = jQuery("<div><span></span></div>").children().wrap("<p></p><div></div>");
107 equals( j[0].parentNode.parentNode.childNodes.length, 1, "There should only be one element wrapping." );
108 equals( j.length, 1, "There should only be one element (no cloning)." );
109 equals( j[0].parentNode.nodeName.toUpperCase(), "P", "The span should be in the paragraph." );
111 // Wrap an element with a jQuery set
112 j = jQuery("<span/>").wrap(jQuery("<div></div>"));
113 equals( j[0].parentNode.nodeName.toLowerCase(), "div", "Wrapping works." );
115 // Wrap an element with a jQuery set and event
116 result = jQuery("<div></div>").click(function(){
117 ok(true, "Event triggered.");
119 // Remove handlers on detached elements
120 result.unbind();
121 jQuery(this).unbind();
124 j = jQuery("<span/>").wrap(result);
125 equals( j[0].parentNode.nodeName.toLowerCase(), "div", "Wrapping works." );
127 j.parent().trigger("click");
129 // clean up attached elements
130 QUnit.reset();
133 test("wrap(String|Element)", function() {
134 testWrap(bareObj);
137 test("wrap(Function)", function() {
138 testWrap(functionReturningObj);
141 var testWrapAll = function(val) {
142 expect(8);
143 var prev = jQuery("#firstp")[0].previousSibling;
144 var p = jQuery("#firstp,#first")[0].parentNode;
146 var result = jQuery('#firstp,#first').wrapAll(val( '<div class="red"><div class="tmp"></div></div>' ));
147 equals( result.parent().length, 1, 'Check for wrapping of on-the-fly html' );
148 ok( jQuery('#first').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
149 ok( jQuery('#firstp').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
150 equals( jQuery("#first").parent().parent()[0].previousSibling, prev, "Correct Previous Sibling" );
151 equals( jQuery("#first").parent().parent()[0].parentNode, p, "Correct Parent" );
153 QUnit.reset();
154 var prev = jQuery("#firstp")[0].previousSibling;
155 var p = jQuery("#first")[0].parentNode;
156 var result = jQuery('#firstp,#first').wrapAll(val( document.getElementById('empty') ));
157 equals( jQuery("#first").parent()[0], jQuery("#firstp").parent()[0], "Same Parent" );
158 equals( jQuery("#first").parent()[0].previousSibling, prev, "Correct Previous Sibling" );
159 equals( jQuery("#first").parent()[0].parentNode, p, "Correct Parent" );
162 test("wrapAll(String|Element)", function() {
163 testWrapAll(bareObj);
166 var testWrapInner = function(val) {
167 expect(11);
168 var num = jQuery("#first").children().length;
169 var result = jQuery('#first').wrapInner(val('<div class="red"><div id="tmp"></div></div>'));
170 equals( jQuery("#first").children().length, 1, "Only one child" );
171 ok( jQuery("#first").children().is(".red"), "Verify Right Element" );
172 equals( jQuery("#first").children().children().children().length, num, "Verify Elements Intact" );
174 QUnit.reset();
175 var num = jQuery("#first").html("foo<div>test</div><div>test2</div>").children().length;
176 var result = jQuery('#first').wrapInner(val('<div class="red"><div id="tmp"></div></div>'));
177 equals( jQuery("#first").children().length, 1, "Only one child" );
178 ok( jQuery("#first").children().is(".red"), "Verify Right Element" );
179 equals( jQuery("#first").children().children().children().length, num, "Verify Elements Intact" );
181 QUnit.reset();
182 var num = jQuery("#first").children().length;
183 var result = jQuery('#first').wrapInner(val(document.getElementById('empty')));
184 equals( jQuery("#first").children().length, 1, "Only one child" );
185 ok( jQuery("#first").children().is("#empty"), "Verify Right Element" );
186 equals( jQuery("#first").children().children().length, num, "Verify Elements Intact" );
188 var div = jQuery("<div/>");
189 div.wrapInner(val("<span></span>"));
190 equals(div.children().length, 1, "The contents were wrapped.");
191 equals(div.children()[0].nodeName.toLowerCase(), "span", "A span was inserted.");
194 test("wrapInner(String|Element)", function() {
195 testWrapInner(bareObj);
198 test("wrapInner(Function)", function() {
199 testWrapInner(functionReturningObj)
202 test("unwrap()", function() {
203 expect(9);
205 jQuery("body").append(' <div id="unwrap" style="display: none;"> <div id="unwrap1"> <span class="unwrap">a</span> <span class="unwrap">b</span> </div> <div id="unwrap2"> <span class="unwrap">c</span> <span class="unwrap">d</span> </div> <div id="unwrap3"> <b><span class="unwrap unwrap3">e</span></b> <b><span class="unwrap unwrap3">f</span></b> </div> </div>');
207 var abcd = jQuery('#unwrap1 > span, #unwrap2 > span').get(),
208 abcdef = jQuery('#unwrap span').get();
210 equals( jQuery('#unwrap1 span').add('#unwrap2 span:first').unwrap().length, 3, 'make #unwrap1 and #unwrap2 go away' );
211 same( jQuery('#unwrap > span').get(), abcd, 'all four spans should still exist' );
213 same( jQuery('#unwrap3 span').unwrap().get(), jQuery('#unwrap3 > span').get(), 'make all b in #unwrap3 go away' );
215 same( jQuery('#unwrap3 span').unwrap().get(), jQuery('#unwrap > span.unwrap3').get(), 'make #unwrap3 go away' );
217 same( jQuery('#unwrap').children().get(), abcdef, '#unwrap only contains 6 child spans' );
219 same( jQuery('#unwrap > span').unwrap().get(), jQuery('body > span.unwrap').get(), 'make the 6 spans become children of body' );
221 same( jQuery('body > span.unwrap').unwrap().get(), jQuery('body > span.unwrap').get(), 'can\'t unwrap children of body' );
222 same( jQuery('body > span.unwrap').unwrap().get(), abcdef, 'can\'t unwrap children of body' );
224 same( jQuery('body > span.unwrap').get(), abcdef, 'body contains 6 .unwrap child spans' );
226 jQuery('body > span.unwrap').remove();
229 var testAppend = function(valueObj) {
230 expect(37);
231 var defaultText = 'Try them out:'
232 var result = jQuery('#first').append(valueObj('<b>buga</b>'));
233 equals( result.text(), defaultText + 'buga', 'Check if text appending works' );
234 equals( jQuery('#select3').append(valueObj('<option value="appendTest">Append Test</option>')).find('option:last-child').attr('value'), 'appendTest', 'Appending html options to select element');
236 QUnit.reset();
237 var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
238 jQuery('#sap').append(valueObj(document.getElementById('first')));
239 equals( jQuery('#sap').text(), expected, "Check for appending of element" );
241 QUnit.reset();
242 expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
243 jQuery('#sap').append(valueObj([document.getElementById('first'), document.getElementById('yahoo')]));
244 equals( jQuery('#sap').text(), expected, "Check for appending of array of elements" );
246 QUnit.reset();
247 expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:";
248 jQuery('#sap').append(valueObj(jQuery("#yahoo, #first")));
249 equals( jQuery('#sap').text(), expected, "Check for appending of jQuery object" );
251 QUnit.reset();
252 jQuery("#sap").append(valueObj( 5 ));
253 ok( jQuery("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );
255 QUnit.reset();
256 jQuery("#sap").append(valueObj( " text with spaces " ));
257 ok( jQuery("#sap")[0].innerHTML.match(/ text with spaces $/), "Check for appending text with spaces" );
259 QUnit.reset();
260 ok( jQuery("#sap").append(valueObj( [] )), "Check for appending an empty array." );
261 ok( jQuery("#sap").append(valueObj( "" )), "Check for appending an empty string." );
262 ok( jQuery("#sap").append(valueObj( document.getElementsByTagName("foo") )), "Check for appending an empty nodelist." );
264 QUnit.reset();
265 jQuery("form").append(valueObj('<input name="radiotest" type="radio" checked="checked" />'));
266 jQuery("form input[name=radiotest]").each(function(){
267 ok( jQuery(this).is(':checked'), "Append checked radio");
268 }).remove();
270 QUnit.reset();
271 jQuery("form").append(valueObj('<input name="radiotest" type="radio" checked = \'checked\' />'));
272 jQuery("form input[name=radiotest]").each(function(){
273 ok( jQuery(this).is(':checked'), "Append alternately formated checked radio");
274 }).remove();
276 QUnit.reset();
277 jQuery("form").append(valueObj('<input name="radiotest" type="radio" checked />'));
278 jQuery("form input[name=radiotest]").each(function(){
279 ok( jQuery(this).is(':checked'), "Append HTML5-formated checked radio");
280 }).remove();
282 QUnit.reset();
283 jQuery("#sap").append(valueObj( document.getElementById('form') ));
284 equals( jQuery("#sap>form").size(), 1, "Check for appending a form" ); // Bug #910
286 QUnit.reset();
287 var pass = true;
288 try {
289 var body = jQuery("#iframe")[0].contentWindow.document.body;
291 pass = false;
292 jQuery( body ).append(valueObj( "<div>test</div>" ));
293 pass = true;
294 } catch(e) {}
296 ok( pass, "Test for appending a DOM node to the contents of an IFrame" );
298 QUnit.reset();
299 jQuery('<fieldset/>').appendTo('#form').append(valueObj( '<legend id="legend">test</legend>' ));
300 t( 'Append legend', '#legend', ['legend'] );
302 QUnit.reset();
303 jQuery('#select1').append(valueObj( '<OPTION>Test</OPTION>' ));
304 equals( jQuery('#select1 option:last').text(), "Test", "Appending &lt;OPTION&gt; (all caps)" );
306 jQuery('#table').append(valueObj( '<colgroup></colgroup>' ));
307 ok( jQuery('#table colgroup').length, "Append colgroup" );
309 jQuery('#table colgroup').append(valueObj( '<col/>' ));
310 ok( jQuery('#table colgroup col').length, "Append col" );
312 QUnit.reset();
313 jQuery('#table').append(valueObj( '<caption></caption>' ));
314 ok( jQuery('#table caption').length, "Append caption" );
316 QUnit.reset();
317 jQuery('form:last')
318 .append(valueObj( '<select id="appendSelect1"></select>' ))
319 .append(valueObj( '<select id="appendSelect2"><option>Test</option></select>' ));
321 t( "Append Select", "#appendSelect1, #appendSelect2", ["appendSelect1", "appendSelect2"] );
323 equals( "Two nodes", jQuery('<div />').append("Two", " nodes").text(), "Appending two text nodes (#4011)" );
325 // using contents will get comments regular, text, and comment nodes
326 var j = jQuery("#nonnodes").contents();
327 var d = jQuery("<div/>").appendTo("#nonnodes").append(j);
328 equals( jQuery("#nonnodes").length, 1, "Check node,textnode,comment append moved leaving just the div" );
329 ok( d.contents().length >= 2, "Check node,textnode,comment append works" );
330 d.contents().appendTo("#nonnodes");
331 d.remove();
332 ok( jQuery("#nonnodes").contents().length >= 2, "Check node,textnode,comment append cleanup worked" );
335 test("append(String|Element|Array&lt;Element&gt;|jQuery)", function() {
336 testAppend(bareObj);
339 test("append(Function)", function() {
340 testAppend(functionReturningObj);
343 test("append(Function) with incoming value", function() {
344 expect(12);
346 var defaultText = 'Try them out:', old = jQuery("#first").html();
348 var result = jQuery('#first').append(function(i, val){
349 equals( val, old, "Make sure the incoming value is correct." );
350 return '<b>buga</b>';
352 equals( result.text(), defaultText + 'buga', 'Check if text appending works' );
354 var select = jQuery('#select3');
355 old = select.html();
357 equals( select.append(function(i, val){
358 equals( val, old, "Make sure the incoming value is correct." );
359 return '<option value="appendTest">Append Test</option>';
360 }).find('option:last-child').attr('value'), 'appendTest', 'Appending html options to select element');
362 QUnit.reset();
363 var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
364 old = jQuery("#sap").html();
366 jQuery('#sap').append(function(i, val){
367 equals( val, old, "Make sure the incoming value is correct." );
368 return document.getElementById('first');
370 equals( jQuery('#sap').text(), expected, "Check for appending of element" );
372 QUnit.reset();
373 expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
374 old = jQuery("#sap").html();
376 jQuery('#sap').append(function(i, val){
377 equals( val, old, "Make sure the incoming value is correct." );
378 return [document.getElementById('first'), document.getElementById('yahoo')];
380 equals( jQuery('#sap').text(), expected, "Check for appending of array of elements" );
382 QUnit.reset();
383 expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:";
384 old = jQuery("#sap").html();
386 jQuery('#sap').append(function(i, val){
387 equals( val, old, "Make sure the incoming value is correct." );
388 return jQuery("#yahoo, #first");
390 equals( jQuery('#sap').text(), expected, "Check for appending of jQuery object" );
392 QUnit.reset();
393 old = jQuery("#sap").html();
395 jQuery("#sap").append(function(i, val){
396 equals( val, old, "Make sure the incoming value is correct." );
397 return 5;
399 ok( jQuery("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );
401 QUnit.reset();
404 test("append the same fragment with events (Bug #6997, 5566)", function () {
405 var doExtra = !jQuery.support.noCloneEvent && document.fireEvent;
406 expect(2 + (doExtra ? 1 : 0));
407 stop(1000);
409 var element;
411 // This patch modified the way that cloning occurs in IE; we need to make sure that
412 // native event handlers on the original object don't get disturbed when they are
413 // modified on the clone
414 if ( doExtra ) {
415 element = jQuery("div:first").click(function () {
416 ok(true, "Event exists on original after being unbound on clone");
417 jQuery(this).unbind('click');
419 var clone = element.clone(true).unbind('click');
420 clone[0].fireEvent('onclick');
421 element[0].fireEvent('onclick');
423 // manually clean up detached elements
424 clone.remove();
427 element = jQuery("<a class='test6997'></a>").click(function () {
428 ok(true, "Append second element events work");
431 jQuery("#listWithTabIndex li").append(element)
432 .find('a.test6997').eq(1).click();
434 element = jQuery("<li class='test6997'></li>").click(function () {
435 ok(true, "Before second element events work");
436 start();
439 jQuery("#listWithTabIndex li").before(element);
440 jQuery("#listWithTabIndex li.test6997").eq(1).click();
443 test("appendTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
444 expect(16);
446 var defaultText = 'Try them out:'
447 jQuery('<b>buga</b>').appendTo('#first');
448 equals( jQuery("#first").text(), defaultText + 'buga', 'Check if text appending works' );
449 equals( jQuery('<option value="appendTest">Append Test</option>').appendTo('#select3').parent().find('option:last-child').attr('value'), 'appendTest', 'Appending html options to select element');
451 QUnit.reset();
452 var l = jQuery("#first").children().length + 2;
453 jQuery("<strong>test</strong>");
454 jQuery("<strong>test</strong>");
455 jQuery([ jQuery("<strong>test</strong>")[0], jQuery("<strong>test</strong>")[0] ])
456 .appendTo("#first");
457 equals( jQuery("#first").children().length, l, "Make sure the elements were inserted." );
458 equals( jQuery("#first").children().last()[0].nodeName.toLowerCase(), "strong", "Verify the last element." );
460 QUnit.reset();
461 var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
462 jQuery(document.getElementById('first')).appendTo('#sap');
463 equals( jQuery('#sap').text(), expected, "Check for appending of element" );
465 QUnit.reset();
466 expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
467 jQuery([document.getElementById('first'), document.getElementById('yahoo')]).appendTo('#sap');
468 equals( jQuery('#sap').text(), expected, "Check for appending of array of elements" );
470 QUnit.reset();
471 ok( jQuery(document.createElement("script")).appendTo("body").length, "Make sure a disconnected script can be appended." );
473 QUnit.reset();
474 expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:";
475 jQuery("#yahoo, #first").appendTo('#sap');
476 equals( jQuery('#sap').text(), expected, "Check for appending of jQuery object" );
478 QUnit.reset();
479 jQuery('#select1').appendTo('#foo');
480 t( 'Append select', '#foo select', ['select1'] );
482 QUnit.reset();
483 var div = jQuery("<div/>").click(function(){
484 ok(true, "Running a cloned click.");
486 div.appendTo("#main, #moretests");
488 jQuery("#main div:last").click();
489 jQuery("#moretests div:last").click();
491 QUnit.reset();
492 var div = jQuery("<div/>").appendTo("#main, #moretests");
494 equals( div.length, 2, "appendTo returns the inserted elements" );
496 div.addClass("test");
498 ok( jQuery("#main div:last").hasClass("test"), "appendTo element was modified after the insertion" );
499 ok( jQuery("#moretests div:last").hasClass("test"), "appendTo element was modified after the insertion" );
501 QUnit.reset();
503 div = jQuery("<div/>");
504 jQuery("<span>a</span><b>b</b>").filter("span").appendTo( div );
506 equals( div.children().length, 1, "Make sure the right number of children were inserted." );
508 div = jQuery("#moretests div");
510 var num = jQuery("#main div").length;
511 div.remove().appendTo("#main");
513 equals( jQuery("#main div").length, num, "Make sure all the removed divs were inserted." );
515 QUnit.reset();
518 var testPrepend = function(val) {
519 expect(5);
520 var defaultText = 'Try them out:'
521 var result = jQuery('#first').prepend(val( '<b>buga</b>' ));
522 equals( result.text(), 'buga' + defaultText, 'Check if text prepending works' );
523 equals( jQuery('#select3').prepend(val( '<option value="prependTest">Prepend Test</option>' )).find('option:first-child').attr('value'), 'prependTest', 'Prepending html options to select element');
525 QUnit.reset();
526 var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
527 jQuery('#sap').prepend(val( document.getElementById('first') ));
528 equals( jQuery('#sap').text(), expected, "Check for prepending of element" );
530 QUnit.reset();
531 expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
532 jQuery('#sap').prepend(val( [document.getElementById('first'), document.getElementById('yahoo')] ));
533 equals( jQuery('#sap').text(), expected, "Check for prepending of array of elements" );
535 QUnit.reset();
536 expected = "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog";
537 jQuery('#sap').prepend(val( jQuery("#yahoo, #first") ));
538 equals( jQuery('#sap').text(), expected, "Check for prepending of jQuery object" );
541 test("prepend(String|Element|Array&lt;Element&gt;|jQuery)", function() {
542 testPrepend(bareObj);
545 test("prepend(Function)", function() {
546 testPrepend(functionReturningObj);
549 test("prepend(Function) with incoming value", function() {
550 expect(10);
552 var defaultText = 'Try them out:', old = jQuery('#first').html();
553 var result = jQuery('#first').prepend(function(i, val) {
554 equals( val, old, "Make sure the incoming value is correct." );
555 return '<b>buga</b>';
557 equals( result.text(), 'buga' + defaultText, 'Check if text prepending works' );
559 old = jQuery("#select3").html();
561 equals( jQuery('#select3').prepend(function(i, val) {
562 equals( val, old, "Make sure the incoming value is correct." );
563 return '<option value="prependTest">Prepend Test</option>';
564 }).find('option:first-child').attr('value'), 'prependTest', 'Prepending html options to select element');
566 QUnit.reset();
567 var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
568 old = jQuery('#sap').html();
570 jQuery('#sap').prepend(function(i, val) {
571 equals( val, old, "Make sure the incoming value is correct." );
572 return document.getElementById('first');
575 equals( jQuery('#sap').text(), expected, "Check for prepending of element" );
577 QUnit.reset();
578 expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
579 old = jQuery('#sap').html();
581 jQuery('#sap').prepend(function(i, val) {
582 equals( val, old, "Make sure the incoming value is correct." );
583 return [document.getElementById('first'), document.getElementById('yahoo')];
586 equals( jQuery('#sap').text(), expected, "Check for prepending of array of elements" );
588 QUnit.reset();
589 expected = "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog";
590 old = jQuery('#sap').html();
592 jQuery('#sap').prepend(function(i, val) {
593 equals( val, old, "Make sure the incoming value is correct." );
594 return jQuery("#yahoo, #first");
597 equals( jQuery('#sap').text(), expected, "Check for prepending of jQuery object" );
600 test("prependTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
601 expect(6);
602 var defaultText = 'Try them out:'
603 jQuery('<b>buga</b>').prependTo('#first');
604 equals( jQuery('#first').text(), 'buga' + defaultText, 'Check if text prepending works' );
605 equals( jQuery('<option value="prependTest">Prepend Test</option>').prependTo('#select3').parent().find('option:first-child').attr('value'), 'prependTest', 'Prepending html options to select element');
607 QUnit.reset();
608 var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
609 jQuery(document.getElementById('first')).prependTo('#sap');
610 equals( jQuery('#sap').text(), expected, "Check for prepending of element" );
612 QUnit.reset();
613 expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
614 jQuery([document.getElementById('first'), document.getElementById('yahoo')]).prependTo('#sap');
615 equals( jQuery('#sap').text(), expected, "Check for prepending of array of elements" );
617 QUnit.reset();
618 expected = "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog";
619 jQuery("#yahoo, #first").prependTo('#sap');
620 equals( jQuery('#sap').text(), expected, "Check for prepending of jQuery object" );
622 QUnit.reset();
623 jQuery('<select id="prependSelect1"></select>').prependTo('form:last');
624 jQuery('<select id="prependSelect2"><option>Test</option></select>').prependTo('form:last');
626 t( "Prepend Select", "#prependSelect2, #prependSelect1", ["prependSelect2", "prependSelect1"] );
629 var testBefore = function(val) {
630 expect(6);
631 var expected = 'This is a normal link: bugaYahoo';
632 jQuery('#yahoo').before(val( '<b>buga</b>' ));
633 equals( jQuery('#en').text(), expected, 'Insert String before' );
635 QUnit.reset();
636 expected = "This is a normal link: Try them out:Yahoo";
637 jQuery('#yahoo').before(val( document.getElementById('first') ));
638 equals( jQuery('#en').text(), expected, "Insert element before" );
640 QUnit.reset();
641 expected = "This is a normal link: Try them out:diveintomarkYahoo";
642 jQuery('#yahoo').before(val( [document.getElementById('first'), document.getElementById('mark')] ));
643 equals( jQuery('#en').text(), expected, "Insert array of elements before" );
645 QUnit.reset();
646 expected = "This is a normal link: diveintomarkTry them out:Yahoo";
647 jQuery('#yahoo').before(val( jQuery("#mark, #first") ));
648 equals( jQuery('#en').text(), expected, "Insert jQuery before" );
650 var set = jQuery("<div/>").before("<span>test</span>");
651 equals( set[0].nodeName.toLowerCase(), "span", "Insert the element before the disconnected node." );
652 equals( set.length, 2, "Insert the element before the disconnected node." );
655 test("before(String|Element|Array&lt;Element&gt;|jQuery)", function() {
656 testBefore(bareObj);
659 test("before(Function)", function() {
660 testBefore(functionReturningObj);
663 test("insertBefore(String|Element|Array&lt;Element&gt;|jQuery)", function() {
664 expect(4);
665 var expected = 'This is a normal link: bugaYahoo';
666 jQuery('<b>buga</b>').insertBefore('#yahoo');
667 equals( jQuery('#en').text(), expected, 'Insert String before' );
669 QUnit.reset();
670 expected = "This is a normal link: Try them out:Yahoo";
671 jQuery(document.getElementById('first')).insertBefore('#yahoo');
672 equals( jQuery('#en').text(), expected, "Insert element before" );
674 QUnit.reset();
675 expected = "This is a normal link: Try them out:diveintomarkYahoo";
676 jQuery([document.getElementById('first'), document.getElementById('mark')]).insertBefore('#yahoo');
677 equals( jQuery('#en').text(), expected, "Insert array of elements before" );
679 QUnit.reset();
680 expected = "This is a normal link: diveintomarkTry them out:Yahoo";
681 jQuery("#mark, #first").insertBefore('#yahoo');
682 equals( jQuery('#en').text(), expected, "Insert jQuery before" );
685 var testAfter = function(val) {
686 expect(6);
687 var expected = 'This is a normal link: Yahoobuga';
688 jQuery('#yahoo').after(val( '<b>buga</b>' ));
689 equals( jQuery('#en').text(), expected, 'Insert String after' );
691 QUnit.reset();
692 expected = "This is a normal link: YahooTry them out:";
693 jQuery('#yahoo').after(val( document.getElementById('first') ));
694 equals( jQuery('#en').text(), expected, "Insert element after" );
696 QUnit.reset();
697 expected = "This is a normal link: YahooTry them out:diveintomark";
698 jQuery('#yahoo').after(val( [document.getElementById('first'), document.getElementById('mark')] ));
699 equals( jQuery('#en').text(), expected, "Insert array of elements after" );
701 QUnit.reset();
702 expected = "This is a normal link: YahoodiveintomarkTry them out:";
703 jQuery('#yahoo').after(val( jQuery("#mark, #first") ));
704 equals( jQuery('#en').text(), expected, "Insert jQuery after" );
706 var set = jQuery("<div/>").after("<span>test</span>");
707 equals( set[1].nodeName.toLowerCase(), "span", "Insert the element after the disconnected node." );
708 equals( set.length, 2, "Insert the element after the disconnected node." );
711 test("after(String|Element|Array&lt;Element&gt;|jQuery)", function() {
712 testAfter(bareObj);
715 test("after(Function)", function() {
716 testAfter(functionReturningObj);
719 test("insertAfter(String|Element|Array&lt;Element&gt;|jQuery)", function() {
720 expect(4);
721 var expected = 'This is a normal link: Yahoobuga';
722 jQuery('<b>buga</b>').insertAfter('#yahoo');
723 equals( jQuery('#en').text(), expected, 'Insert String after' );
725 QUnit.reset();
726 expected = "This is a normal link: YahooTry them out:";
727 jQuery(document.getElementById('first')).insertAfter('#yahoo');
728 equals( jQuery('#en').text(), expected, "Insert element after" );
730 QUnit.reset();
731 expected = "This is a normal link: YahooTry them out:diveintomark";
732 jQuery([document.getElementById('first'), document.getElementById('mark')]).insertAfter('#yahoo');
733 equals( jQuery('#en').text(), expected, "Insert array of elements after" );
735 QUnit.reset();
736 expected = "This is a normal link: YahoodiveintomarkTry them out:";
737 jQuery("#mark, #first").insertAfter('#yahoo');
738 equals( jQuery('#en').text(), expected, "Insert jQuery after" );
741 var testReplaceWith = function(val) {
742 expect(20);
743 jQuery('#yahoo').replaceWith(val( '<b id="replace">buga</b>' ));
744 ok( jQuery("#replace")[0], 'Replace element with string' );
745 ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after string' );
747 QUnit.reset();
748 jQuery('#yahoo').replaceWith(val( document.getElementById('first') ));
749 ok( jQuery("#first")[0], 'Replace element with element' );
750 ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after element' );
752 QUnit.reset();
753 jQuery("#main").append('<div id="bar"><div id="baz">Foo</div></div>');
754 jQuery('#baz').replaceWith("Baz");
755 equals( jQuery("#bar").text(),"Baz", 'Replace element with text' );
756 ok( !jQuery("#baz")[0], 'Verify that original element is gone, after element' );
758 QUnit.reset();
759 jQuery('#yahoo').replaceWith(val( [document.getElementById('first'), document.getElementById('mark')] ));
760 ok( jQuery("#first")[0], 'Replace element with array of elements' );
761 ok( jQuery("#mark")[0], 'Replace element with array of elements' );
762 ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after array of elements' );
764 QUnit.reset();
765 jQuery('#yahoo').replaceWith(val( jQuery("#mark, #first") ));
766 ok( jQuery("#first")[0], 'Replace element with set of elements' );
767 ok( jQuery("#mark")[0], 'Replace element with set of elements' );
768 ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after set of elements' );
770 QUnit.reset();
771 var tmp = jQuery("<div/>").appendTo("body").click(function(){ ok(true, "Newly bound click run." ); });
772 var y = jQuery('<div/>').appendTo("body").click(function(){ ok(true, "Previously bound click run." ); });
773 var child = y.append("<b>test</b>").find("b").click(function(){ ok(true, "Child bound click run." ); return false; });
775 y.replaceWith( tmp );
777 tmp.click();
778 y.click(); // Shouldn't be run
779 child.click(); // Shouldn't be run
781 tmp.remove();
782 y.remove();
783 child.remove();
785 QUnit.reset();
787 y = jQuery('<div/>').appendTo("body").click(function(){ ok(true, "Previously bound click run." ); });
788 var child2 = y.append("<u>test</u>").find("u").click(function(){ ok(true, "Child 2 bound click run." ); return false; });
790 y.replaceWith( child2 );
792 child2.click();
794 y.remove();
795 child2.remove();
797 QUnit.reset();
799 var set = jQuery("<div/>").replaceWith(val("<span>test</span>"));
800 equals( set[0].nodeName.toLowerCase(), "span", "Replace the disconnected node." );
801 equals( set.length, 1, "Replace the disconnected node." );
803 var $div = jQuery("<div class='replacewith'></div>").appendTo("body");
804 // TODO: Work on jQuery(...) inline script execution
805 //$div.replaceWith("<div class='replacewith'></div><script>" +
806 //"equals(jQuery('.replacewith').length, 1, 'Check number of elements in page.');" +
807 //"</script>");
808 equals(jQuery('.replacewith').length, 1, 'Check number of elements in page.');
809 jQuery('.replacewith').remove();
811 QUnit.reset();
813 jQuery("#main").append("<div id='replaceWith'></div>");
814 equals( jQuery("#main").find("div[id=replaceWith]").length, 1, "Make sure only one div exists." );
816 jQuery("#replaceWith").replaceWith( val("<div id='replaceWith'></div>") );
817 equals( jQuery("#main").find("div[id=replaceWith]").length, 1, "Make sure only one div exists." );
819 jQuery("#replaceWith").replaceWith( val("<div id='replaceWith'></div>") );
820 equals( jQuery("#main").find("div[id=replaceWith]").length, 1, "Make sure only one div exists." );
823 test("replaceWith(String|Element|Array&lt;Element&gt;|jQuery)", function() {
824 testReplaceWith(bareObj);
827 test("replaceWith(Function)", function() {
828 testReplaceWith(functionReturningObj);
830 expect(21);
832 var y = jQuery("#yahoo")[0];
834 jQuery(y).replaceWith(function(){
835 equals( this, y, "Make sure the context is coming in correctly." );
838 QUnit.reset();
841 test("replaceWith(string) for more than one element", function(){
842 expect(3);
844 equals(jQuery('#foo p').length, 3, 'ensuring that test data has not changed');
846 jQuery('#foo p').replaceWith('<span>bar</span>');
847 equals(jQuery('#foo span').length, 3, 'verify that all the three original element have been replaced');
848 equals(jQuery('#foo p').length, 0, 'verify that all the three original element have been replaced');
851 test("replaceAll(String|Element|Array&lt;Element&gt;|jQuery)", function() {
852 expect(10);
853 jQuery('<b id="replace">buga</b>').replaceAll("#yahoo");
854 ok( jQuery("#replace")[0], 'Replace element with string' );
855 ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after string' );
857 QUnit.reset();
858 jQuery(document.getElementById('first')).replaceAll("#yahoo");
859 ok( jQuery("#first")[0], 'Replace element with element' );
860 ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after element' );
862 QUnit.reset();
863 jQuery([document.getElementById('first'), document.getElementById('mark')]).replaceAll("#yahoo");
864 ok( jQuery("#first")[0], 'Replace element with array of elements' );
865 ok( jQuery("#mark")[0], 'Replace element with array of elements' );
866 ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after array of elements' );
868 QUnit.reset();
869 jQuery("#mark, #first").replaceAll("#yahoo");
870 ok( jQuery("#first")[0], 'Replace element with set of elements' );
871 ok( jQuery("#mark")[0], 'Replace element with set of elements' );
872 ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after set of elements' );
875 test("jQuery.clone() (#8017)", function() {
877 expect(2);
879 ok( jQuery.clone && jQuery.isFunction( jQuery.clone ) , "jQuery.clone() utility exists and is a function.");
881 var main = jQuery("#main")[0],
882 clone = jQuery.clone( main );
884 equals( main.childNodes.length, clone.childNodes.length, "Simple child length to ensure a large dom tree copies correctly" );
887 test("clone() (#8070)", function () {
888 expect(2);
890 jQuery('<select class="test8070"></select><select class="test8070"></select>').appendTo('#main');
891 var selects = jQuery('.test8070');
892 selects.append('<OPTION>1</OPTION><OPTION>2</OPTION>');
894 equals( selects[0].childNodes.length, 2, "First select got two nodes" );
895 equals( selects[1].childNodes.length, 2, "Second select got two nodes" );
897 selects.remove();
900 test("clone()", function() {
901 expect(37);
902 equals( 'This is a normal link: Yahoo', jQuery('#en').text(), 'Assert text for #en' );
903 var clone = jQuery('#yahoo').clone();
904 equals( 'Try them out:Yahoo', jQuery('#first').append(clone).text(), 'Check for clone' );
905 equals( 'This is a normal link: Yahoo', jQuery('#en').text(), 'Reassert text for #en' );
907 var cloneTags = [
908 "<table/>", "<tr/>", "<td/>", "<div/>",
909 "<button/>", "<ul/>", "<ol/>", "<li/>",
910 "<input type='checkbox' />", "<select/>", "<option/>", "<textarea/>",
911 "<tbody/>", "<thead/>", "<tfoot/>", "<iframe/>"
913 for (var i = 0; i < cloneTags.length; i++) {
914 var j = jQuery(cloneTags[i]);
915 equals( j[0].tagName, j.clone()[0].tagName, 'Clone a ' + cloneTags[i]);
918 // using contents will get comments regular, text, and comment nodes
919 var cl = jQuery("#nonnodes").contents().clone();
920 ok( cl.length >= 2, "Check node,textnode,comment clone works (some browsers delete comments on clone)" );
922 var div = jQuery("<div><ul><li>test</li></ul></div>").click(function(){
923 ok( true, "Bound event still exists." );
926 clone = div.clone(true);
928 // manually clean up detached elements
929 div.remove();
931 div = clone.clone(true);
933 // manually clean up detached elements
934 clone.remove();
936 equals( div.length, 1, "One element cloned" );
937 equals( div[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
938 div.trigger("click");
940 // manually clean up detached elements
941 div.remove();
943 div = jQuery("<div/>").append([ document.createElement("table"), document.createElement("table") ]);
944 div.find("table").click(function(){
945 ok( true, "Bound event still exists." );
948 clone = div.clone(true);
949 equals( clone.length, 1, "One element cloned" );
950 equals( clone[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
951 clone.find("table:last").trigger("click");
953 // manually clean up detached elements
954 div.remove();
955 clone.remove();
957 var divEvt = jQuery("<div><ul><li>test</li></ul></div>").click(function(){
958 ok( false, "Bound event still exists after .clone()." );
960 cloneEvt = divEvt.clone();
962 // Make sure that doing .clone() doesn't clone events
963 cloneEvt.trigger("click");
965 cloneEvt.remove();
966 divEvt.remove();
968 // this is technically an invalid object, but because of the special
969 // classid instantiation it is the only kind that IE has trouble with,
970 // so let's test with it too.
971 div = jQuery("<div/>").html('<object height="355" width="425" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="movie" value="http://www.youtube.com/v/3KANI2dpXLw&amp;hl=en"> <param name="wmode" value="transparent"> </object>');
973 clone = div.clone(true);
974 equals( clone.length, 1, "One element cloned" );
975 equals( clone.html(), div.html(), "Element contents cloned" );
976 equals( clone[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
978 // and here's a valid one.
979 div = jQuery("<div/>").html('<object height="355" width="425" type="application/x-shockwave-flash" data="http://www.youtube.com/v/3KANI2dpXLw&amp;hl=en"> <param name="movie" value="http://www.youtube.com/v/3KANI2dpXLw&amp;hl=en"> <param name="wmode" value="transparent"> </object>');
981 clone = div.clone(true);
982 equals( clone.length, 1, "One element cloned" );
983 equals( clone.html(), div.html(), "Element contents cloned" );
984 equals( clone[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
986 div = jQuery("<div/>").data({ a: true });
987 clone = div.clone(true);
988 equals( clone.data("a"), true, "Data cloned." );
989 clone.data("a", false);
990 equals( clone.data("a"), false, "Ensure cloned element data object was correctly modified" );
991 equals( div.data("a"), true, "Ensure cloned element data object is copied, not referenced" );
993 // manually clean up detached elements
994 div.remove();
995 clone.remove();
997 var form = document.createElement("form");
998 form.action = "/test/";
999 var div = document.createElement("div");
1000 div.appendChild( document.createTextNode("test") );
1001 form.appendChild( div );
1003 equals( jQuery(form).clone().children().length, 1, "Make sure we just get the form back." );
1005 equal( jQuery("body").clone().children()[0].id, "qunit-header", "Make sure cloning body works" );
1008 test("clone(form element) (Bug #3879, #6655)", function() {
1009 expect(6);
1010 var element = jQuery("<select><option>Foo</option><option selected>Bar</option></select>");
1012 equals( element.clone().find("option:selected").val(), element.find("option:selected").val(), "Selected option cloned correctly" );
1014 element = jQuery("<input type='checkbox' value='foo'>").attr('checked', 'checked');
1015 clone = element.clone();
1017 equals( clone.is(":checked"), element.is(":checked"), "Checked input cloned correctly" );
1018 equals( clone[0].defaultValue, "foo", "Checked input defaultValue cloned correctly" );
1019 equals( clone[0].defaultChecked, !jQuery.support.noCloneChecked, "Checked input defaultChecked cloned correctly" );
1021 element = jQuery("<input type='text' value='foo'>");
1022 clone = element.clone();
1023 equals( clone[0].defaultValue, "foo", "Text input defaultValue cloned correctly" );
1025 element = jQuery("<textarea>foo</textarea>");
1026 clone = element.clone();
1027 equals( clone[0].defaultValue, "foo", "Textarea defaultValue cloned correctly" );
1030 test("clone(multiple selected options) (Bug #8129)", function() {
1031 expect(1);
1032 var element = jQuery("<select><option>Foo</option><option selected>Bar</option><option selected>Baz</option></select>");
1034 equals( element.clone().find("option:selected").length, element.find("option:selected").length, "Multiple selected options cloned correctly" );
1038 if (!isLocal) {
1039 test("clone() on XML nodes", function() {
1040 expect(2);
1041 stop();
1042 jQuery.get("data/dashboard.xml", function (xml) {
1043 var root = jQuery(xml.documentElement).clone();
1044 var origTab = jQuery("tab", xml).eq(0);
1045 var cloneTab = jQuery("tab", root).eq(0);
1046 origTab.text("origval");
1047 cloneTab.text("cloneval");
1048 equals(origTab.text(), "origval", "Check original XML node was correctly set");
1049 equals(cloneTab.text(), "cloneval", "Check cloned XML node was correctly set");
1050 start();
1055 var testHtml = function(valueObj) {
1056 expect(31);
1058 jQuery.scriptorder = 0;
1060 var div = jQuery("#main > div");
1061 div.html(valueObj("<b>test</b>"));
1062 var pass = true;
1063 for ( var i = 0; i < div.size(); i++ ) {
1064 if ( div.get(i).childNodes.length != 1 ) pass = false;
1066 ok( pass, "Set HTML" );
1068 div = jQuery("<div/>").html( valueObj('<div id="parent_1"><div id="child_1"/></div><div id="parent_2"/>') );
1070 equals( div.children().length, 2, "Make sure two child nodes exist." );
1071 equals( div.children().children().length, 1, "Make sure that a grandchild exists." );
1073 var space = jQuery("<div/>").html(valueObj("&#160;"))[0].innerHTML;
1074 ok( /^\xA0$|^&nbsp;$/.test( space ), "Make sure entities are passed through correctly." );
1075 equals( jQuery("<div/>").html(valueObj("&amp;"))[0].innerHTML, "&amp;", "Make sure entities are passed through correctly." );
1077 jQuery("#main").html(valueObj("<style>.foobar{color:green;}</style>"));
1079 equals( jQuery("#main").children().length, 1, "Make sure there is a child element." );
1080 equals( jQuery("#main").children()[0].nodeName.toUpperCase(), "STYLE", "And that a style element was inserted." );
1082 QUnit.reset();
1083 // using contents will get comments regular, text, and comment nodes
1084 var j = jQuery("#nonnodes").contents();
1085 j.html(valueObj("<b>bold</b>"));
1087 // this is needed, or the expando added by jQuery unique will yield a different html
1088 j.find('b').removeData();
1089 equals( j.html().replace(/ xmlns="[^"]+"/g, "").toLowerCase(), "<b>bold</b>", "Check node,textnode,comment with html()" );
1091 jQuery("#main").html(valueObj("<select/>"));
1092 jQuery("#main select").html(valueObj("<option>O1</option><option selected='selected'>O2</option><option>O3</option>"));
1093 equals( jQuery("#main select").val(), "O2", "Selected option correct" );
1095 var $div = jQuery('<div />');
1096 equals( $div.html(valueObj( 5 )).html(), '5', 'Setting a number as html' );
1097 equals( $div.html(valueObj( 0 )).html(), '0', 'Setting a zero as html' );
1099 var $div2 = jQuery('<div/>'), insert = "&lt;div&gt;hello1&lt;/div&gt;";
1100 equals( $div2.html(insert).html().replace(/>/g, "&gt;"), insert, "Verify escaped insertion." );
1101 equals( $div2.html("x" + insert).html().replace(/>/g, "&gt;"), "x" + insert, "Verify escaped insertion." );
1102 equals( $div2.html(" " + insert).html().replace(/>/g, "&gt;"), " " + insert, "Verify escaped insertion." );
1104 var map = jQuery("<map/>").html(valueObj("<area id='map01' shape='rect' coords='50,50,150,150' href='http://www.jquery.com/' alt='jQuery'>"));
1106 equals( map[0].childNodes.length, 1, "The area was inserted." );
1107 equals( map[0].firstChild.nodeName.toLowerCase(), "area", "The area was inserted." );
1109 QUnit.reset();
1111 jQuery("#main").html(valueObj('<script type="something/else">ok( false, "Non-script evaluated." );</script><script type="text/javascript">ok( true, "text/javascript is evaluated." );</script><script>ok( true, "No type is evaluated." );</script><div><script type="text/javascript">ok( true, "Inner text/javascript is evaluated." );</script><script>ok( true, "Inner No type is evaluated." );</script><script type="something/else">ok( false, "Non-script evaluated." );</script></div>'));
1113 jQuery("#main").html(valueObj("<script>ok( true, 'Test repeated injection of script.' );</script>"));
1114 jQuery("#main").html(valueObj("<script>ok( true, 'Test repeated injection of script.' );</script>"));
1115 jQuery("#main").html(valueObj("<script>ok( true, 'Test repeated injection of script.' );</script>"));
1117 jQuery("#main").html(valueObj('<script type="text/javascript">ok( true, "jQuery().html().evalScripts() Evals Scripts Twice in Firefox, see #975 (1)" );</script>'));
1119 jQuery("#main").html(valueObj('foo <form><script type="text/javascript">ok( true, "jQuery().html().evalScripts() Evals Scripts Twice in Firefox, see #975 (2)" );</script></form>'));
1121 jQuery("#main").html(valueObj("<script>equals(jQuery.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(jQuery.scriptorder++, 1, 'Script (nested) is executed in order');equals(jQuery('#scriptorder').length, 1,'Execute after html')<\/script></span><script>equals(jQuery.scriptorder++, 2, 'Script (unnested) is executed in order');equals(jQuery('#scriptorder').length, 1,'Execute after html')<\/script>"));
1124 test("html(String)", function() {
1125 testHtml(bareObj);
1128 test("html(Function)", function() {
1129 testHtml(functionReturningObj);
1131 expect(33);
1133 QUnit.reset();
1135 jQuery("#main").html(function(){
1136 return jQuery(this).text();
1139 ok( !/</.test( jQuery("#main").html() ), "Replace html with text." );
1140 ok( jQuery("#main").html().length > 0, "Make sure text exists." );
1143 test("html(Function) with incoming value", function() {
1144 expect(20);
1146 var div = jQuery("#main > div"), old = div.map(function(){ return jQuery(this).html() });
1148 div.html(function(i, val) {
1149 equals( val, old[i], "Make sure the incoming value is correct." );
1150 return "<b>test</b>";
1153 var pass = true;
1154 div.each(function(){
1155 if ( this.childNodes.length !== 1 ) {
1156 pass = false;
1159 ok( pass, "Set HTML" );
1161 QUnit.reset();
1162 // using contents will get comments regular, text, and comment nodes
1163 var j = jQuery("#nonnodes").contents();
1164 old = j.map(function(){ return jQuery(this).html(); });
1166 j.html(function(i, val) {
1167 equals( val, old[i], "Make sure the incoming value is correct." );
1168 return "<b>bold</b>";
1171 // Handle the case where no comment is in the document
1172 if ( j.length === 2 ) {
1173 equals( null, null, "Make sure the incoming value is correct." );
1176 j.find('b').removeData();
1177 equals( j.html().replace(/ xmlns="[^"]+"/g, "").toLowerCase(), "<b>bold</b>", "Check node,textnode,comment with html()" );
1179 var $div = jQuery('<div />');
1181 equals( $div.html(function(i, val) {
1182 equals( val, "", "Make sure the incoming value is correct." );
1183 return 5;
1184 }).html(), '5', 'Setting a number as html' );
1186 equals( $div.html(function(i, val) {
1187 equals( val, "5", "Make sure the incoming value is correct." );
1188 return 0;
1189 }).html(), '0', 'Setting a zero as html' );
1191 var $div2 = jQuery('<div/>'), insert = "&lt;div&gt;hello1&lt;/div&gt;";
1192 equals( $div2.html(function(i, val) {
1193 equals( val, "", "Make sure the incoming value is correct." );
1194 return insert;
1195 }).html().replace(/>/g, "&gt;"), insert, "Verify escaped insertion." );
1197 equals( $div2.html(function(i, val) {
1198 equals( val.replace(/>/g, "&gt;"), insert, "Make sure the incoming value is correct." );
1199 return "x" + insert;
1200 }).html().replace(/>/g, "&gt;"), "x" + insert, "Verify escaped insertion." );
1202 equals( $div2.html(function(i, val) {
1203 equals( val.replace(/>/g, "&gt;"), "x" + insert, "Make sure the incoming value is correct." );
1204 return " " + insert;
1205 }).html().replace(/>/g, "&gt;"), " " + insert, "Verify escaped insertion." );
1208 var testRemove = function(method) {
1209 expect(9);
1211 var first = jQuery("#ap").children(":first");
1212 first.data("foo", "bar");
1214 jQuery("#ap").children()[method]();
1215 ok( jQuery("#ap").text().length > 10, "Check text is not removed" );
1216 equals( jQuery("#ap").children().length, 0, "Check remove" );
1218 equals( first.data("foo"), method == "remove" ? null : "bar" );
1220 QUnit.reset();
1221 jQuery("#ap").children()[method]("a");
1222 ok( jQuery("#ap").text().length > 10, "Check text is not removed" );
1223 equals( jQuery("#ap").children().length, 1, "Check filtered remove" );
1225 jQuery("#ap").children()[method]("a, code");
1226 equals( jQuery("#ap").children().length, 0, "Check multi-filtered remove" );
1228 // using contents will get comments regular, text, and comment nodes
1229 // Handle the case where no comment is in the document
1230 ok( jQuery("#nonnodes").contents().length >= 2, "Check node,textnode,comment remove works" );
1231 jQuery("#nonnodes").contents()[method]();
1232 equals( jQuery("#nonnodes").contents().length, 0, "Check node,textnode,comment remove works" );
1234 // manually clean up detached elements
1235 if (method === "detach") {
1236 first.remove();
1239 QUnit.reset();
1241 var count = 0;
1242 var first = jQuery("#ap").children(":first");
1243 var cleanUp = first.click(function() { count++ })[method]().appendTo("#main").click();
1245 equals( method == "remove" ? 0 : 1, count );
1247 // manually clean up detached elements
1248 cleanUp.remove();
1251 test("remove()", function() {
1252 testRemove("remove");
1255 test("detach()", function() {
1256 testRemove("detach");
1259 test("empty()", function() {
1260 expect(3);
1261 equals( jQuery("#ap").children().empty().text().length, 0, "Check text is removed" );
1262 equals( jQuery("#ap").children().length, 4, "Check elements are not removed" );
1264 // using contents will get comments regular, text, and comment nodes
1265 var j = jQuery("#nonnodes").contents();
1266 j.empty();
1267 equals( j.html(), "", "Check node,textnode,comment empty works" );
1270 test("jQuery.cleanData", function() {
1271 expect(14);
1273 var type, pos, div, child;
1275 type = "remove";
1277 // Should trigger 4 remove event
1278 div = getDiv().remove();
1280 // Should both do nothing
1281 pos = "Outer";
1282 div.trigger("click");
1284 pos = "Inner";
1285 div.children().trigger("click");
1287 type = "empty";
1288 div = getDiv();
1289 child = div.children();
1291 // Should trigger 2 remove event
1292 div.empty();
1294 // Should trigger 1
1295 pos = "Outer";
1296 div.trigger("click");
1298 // Should do nothing
1299 pos = "Inner";
1300 child.trigger("click");
1302 // Should trigger 2
1303 div.remove();
1305 type = "html";
1307 div = getDiv();
1308 child = div.children();
1310 // Should trigger 2 remove event
1311 div.html("<div></div>");
1313 // Should trigger 1
1314 pos = "Outer";
1315 div.trigger("click");
1317 // Should do nothing
1318 pos = "Inner";
1319 child.trigger("click");
1321 // Should trigger 2
1322 div.remove();
1324 function getDiv() {
1325 var div = jQuery("<div class='outer'><div class='inner'></div></div>").click(function(){
1326 ok( true, type + " " + pos + " Click event fired." );
1327 }).focus(function(){
1328 ok( true, type + " " + pos + " Focus event fired." );
1329 }).find("div").click(function(){
1330 ok( false, type + " " + pos + " Click event fired." );
1331 }).focus(function(){
1332 ok( false, type + " " + pos + " Focus event fired." );
1333 }).end().appendTo("body");
1335 div[0].detachEvent = div[0].removeEventListener = function(t){
1336 ok( true, type + " Outer " + t + " event unbound" );
1339 div[0].firstChild.detachEvent = div[0].firstChild.removeEventListener = function(t){
1340 ok( true, type + " Inner " + t + " event unbound" );
1343 return div;
1347 test("jQuery.buildFragment - no plain-text caching (Bug #6779)", function() {
1348 expect(1);
1350 // DOM manipulation fails if added text matches an Object method
1351 var $f = jQuery( "<div />" ).appendTo( "#main" ),
1352 bad = [ "start-", "toString", "hasOwnProperty", "append", "here&there!", "-end" ];
1354 for ( var i=0; i < bad.length; i++ ) {
1355 try {
1356 $f.append( bad[i] );
1358 catch(e) {}
1360 equals($f.text(), bad.join(''), "Cached strings that match Object properties");
1361 $f.remove();