Merge branch '8017lint' of https://github.com/rwldrn/jquery into 8017lint
[jquery.git] / test / unit / manipulation.js
index c250b53..739868b 100644 (file)
@@ -1,4 +1,7 @@
-module("manipulation");
+module("manipulation", { teardown: moduleTeardown });
+
+// Ensure that an extended Array prototype doesn't break jQuery
+Array.prototype.arrayProtoFn = function(arg) { throw("arrayProtoFn should not be called"); };
 
 var bareObj = function(value) { return value; };
 var functionReturningObj = function(value) { return (function() { return value; }); };
@@ -22,7 +25,9 @@ var testText = function(valueObj) {
        j.text(valueObj("hi!"));
        equals( jQuery(j[0]).text(), "hi!", "Check node,textnode,comment with text()" );
        equals( j[1].nodeValue, " there ", "Check node,textnode,comment with text()" );
-       equals( j[2].nodeType, 8, "Check node,textnode,comment with text()" );
+
+       // Blackberry 4.6 doesn't maintain comments in the DOM
+       equals( jQuery("#nonnodes")[0].childNodes.length < 3 ? 8 : j[2].nodeType, 8, "Check node,textnode,comment with text()" );
 }
 
 test("text(String)", function() {
@@ -35,33 +40,33 @@ test("text(Function)", function() {
 
 test("text(Function) with incoming value", function() {
        expect(2);
-       
+
        var old = "This link has class=\"blog\": Simon Willison's Weblog";
-       
+
        jQuery('#sap').text(function(i, val) {
                equals( val, old, "Make sure the incoming value is correct." );
                return "foobar";
        });
-       
+
        equals( jQuery("#sap").text(), "foobar", 'Check for merged text of more then one element.' );
-       
-       reset();
+
+       QUnit.reset();
 });
 
 var testWrap = function(val) {
-       expect(18);
+       expect(19);
        var defaultText = 'Try them out:'
        var result = jQuery('#first').wrap(val( '<div class="red"><span></span></div>' )).text();
        equals( defaultText, result, 'Check for wrapping of on-the-fly html' );
        ok( jQuery('#first').parent().parent().is('.red'), 'Check if wrapper has class "red"' );
 
-       reset();
+       QUnit.reset();
        var defaultText = 'Try them out:'
        var result = jQuery('#first').wrap(val( document.getElementById('empty') )).parent();
        ok( result.is('ol'), 'Check for element wrapping' );
        equals( result.text(), defaultText, 'Check for element wrapping' );
 
-       reset();
+       QUnit.reset();
        jQuery('#check1').click(function() {
                var checkbox = this;
                ok( checkbox.checked, "Checkbox's state is erased after wrap() action, see #769" );
@@ -72,14 +77,26 @@ var testWrap = function(val) {
        // using contents will get comments regular, text, and comment nodes
        var j = jQuery("#nonnodes").contents();
        j.wrap(val( "<i></i>" ));
-       equals( jQuery("#nonnodes > i").length, 3, "Check node,textnode,comment wraps ok" );
+
+       // Blackberry 4.6 doesn't maintain comments in the DOM
+       equals( jQuery("#nonnodes > i").length, jQuery("#nonnodes")[0].childNodes.length, "Check node,textnode,comment wraps ok" );
        equals( jQuery("#nonnodes > i").text(), j.text(), "Check node,textnode,comment wraps doesn't hurt text" );
 
        // Try wrapping a disconnected node
+       var cacheLength = 0;
+       for (var i in jQuery.cache) {
+               cacheLength++;
+       }
+
        j = jQuery("<label/>").wrap(val( "<li/>" ));
        equals( j[0].nodeName.toUpperCase(), "LABEL", "Element is a label" );
        equals( j[0].parentNode.nodeName.toUpperCase(), "LI", "Element has been wrapped" );
 
+       for (i in jQuery.cache) {
+               cacheLength--;
+       }
+       equals(cacheLength, 0, "No memory leak in jQuery.cache (bug #7165)");
+
        // Wrap an element containing a text node
        j = jQuery("<span/>").wrap("<div>test</div>");
        equals( j[0].previousSibling.nodeType, 3, "Make sure the previous node is a text element" );
@@ -98,12 +115,19 @@ var testWrap = function(val) {
        // Wrap an element with a jQuery set and event
        result = jQuery("<div></div>").click(function(){
                ok(true, "Event triggered.");
+
+               // Remove handlers on detached elements
+               result.unbind();
+               jQuery(this).unbind();
        });
 
        j = jQuery("<span/>").wrap(result);
        equals( j[0].parentNode.nodeName.toLowerCase(), "div", "Wrapping works." );
 
        j.parent().trigger("click");
+
+       // clean up attached elements
+       QUnit.reset();
 }
 
 test("wrap(String|Element)", function() {
@@ -126,7 +150,7 @@ var testWrapAll = function(val) {
        equals( jQuery("#first").parent().parent()[0].previousSibling, prev, "Correct Previous Sibling" );
        equals( jQuery("#first").parent().parent()[0].parentNode, p, "Correct Parent" );
 
-       reset();
+       QUnit.reset();
        var prev = jQuery("#firstp")[0].previousSibling;
        var p = jQuery("#first")[0].parentNode;
        var result = jQuery('#firstp,#first').wrapAll(val( document.getElementById('empty') ));
@@ -139,28 +163,30 @@ test("wrapAll(String|Element)", function() {
        testWrapAll(bareObj);
 });
 
-// TODO: Figure out why each(wrapAll) is not equivalent to wrapAll
-// test("wrapAll(Function)", function() {
-//     testWrapAll(functionReturningObj);
-// })
-
 var testWrapInner = function(val) {
-       expect(8);
+       expect(11);
        var num = jQuery("#first").children().length;
-       var result = jQuery('#first').wrapInner('<div class="red"><div id="tmp"></div></div>');
+       var result = jQuery('#first').wrapInner(val('<div class="red"><div id="tmp"></div></div>'));
        equals( jQuery("#first").children().length, 1, "Only one child" );
        ok( jQuery("#first").children().is(".red"), "Verify Right Element" );
        equals( jQuery("#first").children().children().children().length, num, "Verify Elements Intact" );
 
-       reset();
+       QUnit.reset();
+       var num = jQuery("#first").html("foo<div>test</div><div>test2</div>").children().length;
+       var result = jQuery('#first').wrapInner(val('<div class="red"><div id="tmp"></div></div>'));
+       equals( jQuery("#first").children().length, 1, "Only one child" );
+       ok( jQuery("#first").children().is(".red"), "Verify Right Element" );
+       equals( jQuery("#first").children().children().children().length, num, "Verify Elements Intact" );
+
+       QUnit.reset();
        var num = jQuery("#first").children().length;
-       var result = jQuery('#first').wrapInner(document.getElementById('empty'));
+       var result = jQuery('#first').wrapInner(val(document.getElementById('empty')));
        equals( jQuery("#first").children().length, 1, "Only one child" );
        ok( jQuery("#first").children().is("#empty"), "Verify Right Element" );
        equals( jQuery("#first").children().children().length, num, "Verify Elements Intact" );
 
        var div = jQuery("<div/>");
-       div.wrapInner("<span></span>");
+       div.wrapInner(val("<span></span>"));
        equals(div.children().length, 1, "The contents were wrapped.");
        equals(div.children()[0].nodeName.toLowerCase(), "span", "A span was inserted.");
 }
@@ -169,10 +195,9 @@ test("wrapInner(String|Element)", function() {
        testWrapInner(bareObj);
 });
 
-// TODO: wrapInner uses wrapAll -- get wrapAll working with Function
-// test("wrapInner(Function)", function() {
-//     testWrapInner(functionReturningObj)
-// })
+test("wrapInner(Function)", function() {
+       testWrapInner(functionReturningObj)
+});
 
 test("unwrap()", function() {
        expect(9);
@@ -202,59 +227,79 @@ test("unwrap()", function() {
 });
 
 var testAppend = function(valueObj) {
-       expect(22);
+       expect(37);
        var defaultText = 'Try them out:'
        var result = jQuery('#first').append(valueObj('<b>buga</b>'));
        equals( result.text(), defaultText + 'buga', 'Check if text appending works' );
        equals( jQuery('#select3').append(valueObj('<option value="appendTest">Append Test</option>')).find('option:last-child').attr('value'), 'appendTest', 'Appending html options to select element');
 
-       reset();
+       QUnit.reset();
        var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
        jQuery('#sap').append(valueObj(document.getElementById('first')));
-       equals( expected, jQuery('#sap').text(), "Check for appending of element" );
+       equals( jQuery('#sap').text(), expected, "Check for appending of element" );
 
-       reset();
+       QUnit.reset();
        expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
        jQuery('#sap').append(valueObj([document.getElementById('first'), document.getElementById('yahoo')]));
-       equals( expected, jQuery('#sap').text(), "Check for appending of array of elements" );
+       equals( jQuery('#sap').text(), expected, "Check for appending of array of elements" );
 
-       reset();
+       QUnit.reset();
        expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:";
-       jQuery('#sap').append(valueObj(jQuery("#first, #yahoo")));
-       equals( expected, jQuery('#sap').text(), "Check for appending of jQuery object" );
+       jQuery('#sap').append(valueObj(jQuery("#yahoo, #first")));
+       equals( jQuery('#sap').text(), expected, "Check for appending of jQuery object" );
 
-       reset();
+       QUnit.reset();
        jQuery("#sap").append(valueObj( 5 ));
        ok( jQuery("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );
 
-       reset();
+       QUnit.reset();
        jQuery("#sap").append(valueObj( " text with spaces " ));
        ok( jQuery("#sap")[0].innerHTML.match(/ text with spaces $/), "Check for appending text with spaces" );
 
-       reset();
+       QUnit.reset();
        ok( jQuery("#sap").append(valueObj( [] )), "Check for appending an empty array." );
        ok( jQuery("#sap").append(valueObj( "" )), "Check for appending an empty string." );
        ok( jQuery("#sap").append(valueObj( document.getElementsByTagName("foo") )), "Check for appending an empty nodelist." );
 
-       reset();
+       QUnit.reset();
+       jQuery("form").append(valueObj('<input name="radiotest" type="radio" checked="checked" />'));
+       jQuery("form input[name=radiotest]").each(function(){
+               ok( jQuery(this).is(':checked'), "Append checked radio");
+       }).remove();
+
+       QUnit.reset();
+       jQuery("form").append(valueObj('<input name="radiotest" type="radio" checked    =   \'checked\' />'));
+       jQuery("form input[name=radiotest]").each(function(){
+               ok( jQuery(this).is(':checked'), "Append alternately formated checked radio");
+       }).remove();
+
+       QUnit.reset();
+       jQuery("form").append(valueObj('<input name="radiotest" type="radio" checked />'));
+       jQuery("form input[name=radiotest]").each(function(){
+               ok( jQuery(this).is(':checked'), "Append HTML5-formated checked radio");
+       }).remove();
+
+       QUnit.reset();
        jQuery("#sap").append(valueObj( document.getElementById('form') ));
        equals( jQuery("#sap>form").size(), 1, "Check for appending a form" ); // Bug #910
 
-       reset();
+       QUnit.reset();
        var pass = true;
        try {
-               jQuery( jQuery("#iframe")[0].contentWindow.document.body ).append(valueObj( "<div>test</div>" ));
-       } catch(e) {
+               var body = jQuery("#iframe")[0].contentWindow.document.body;
+
                pass = false;
-       }
+               jQuery( body ).append(valueObj( "<div>test</div>" ));
+               pass = true;
+       } catch(e) {}
 
        ok( pass, "Test for appending a DOM node to the contents of an IFrame" );
 
-       reset();
+       QUnit.reset();
        jQuery('<fieldset/>').appendTo('#form').append(valueObj( '<legend id="legend">test</legend>' ));
        t( 'Append legend', '#legend', ['legend'] );
 
-       reset();
+       QUnit.reset();
        jQuery('#select1').append(valueObj( '<OPTION>Test</OPTION>' ));
        equals( jQuery('#select1 option:last').text(), "Test", "Appending &lt;OPTION&gt; (all caps)" );
 
@@ -264,11 +309,11 @@ var testAppend = function(valueObj) {
        jQuery('#table colgroup').append(valueObj( '<col/>' ));
        ok( jQuery('#table colgroup col').length, "Append col" );
 
-       reset();
+       QUnit.reset();
        jQuery('#table').append(valueObj( '<caption></caption>' ));
        ok( jQuery('#table caption').length, "Append caption" );
 
-       reset();
+       QUnit.reset();
        jQuery('form:last')
                .append(valueObj( '<select id="appendSelect1"></select>' ))
                .append(valueObj( '<select id="appendSelect2"><option>Test</option></select>' ));
@@ -297,95 +342,143 @@ test("append(Function)", function() {
 
 test("append(Function) with incoming value", function() {
        expect(12);
-       
+
        var defaultText = 'Try them out:', old = jQuery("#first").html();
-       
+
        var result = jQuery('#first').append(function(i, val){
                equals( val, old, "Make sure the incoming value is correct." );
                return '<b>buga</b>';
        });
        equals( result.text(), defaultText + 'buga', 'Check if text appending works' );
-       
+
        var select = jQuery('#select3');
        old = select.html();
-       
+
        equals( select.append(function(i, val){
                equals( val, old, "Make sure the incoming value is correct." );
                return '<option value="appendTest">Append Test</option>';
        }).find('option:last-child').attr('value'), 'appendTest', 'Appending html options to select element');
 
-       reset();
+       QUnit.reset();
        var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
        old = jQuery("#sap").html();
-       
+
        jQuery('#sap').append(function(i, val){
                equals( val, old, "Make sure the incoming value is correct." );
                return document.getElementById('first');
        });
-       equals( expected, jQuery('#sap').text(), "Check for appending of element" );
+       equals( jQuery('#sap').text(), expected, "Check for appending of element" );
 
-       reset();
+       QUnit.reset();
        expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
        old = jQuery("#sap").html();
-       
+
        jQuery('#sap').append(function(i, val){
                equals( val, old, "Make sure the incoming value is correct." );
                return [document.getElementById('first'), document.getElementById('yahoo')];
        });
-       equals( expected, jQuery('#sap').text(), "Check for appending of array of elements" );
+       equals( jQuery('#sap').text(), expected, "Check for appending of array of elements" );
 
-       reset();
+       QUnit.reset();
        expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:";
        old = jQuery("#sap").html();
-       
+
        jQuery('#sap').append(function(i, val){
                equals( val, old, "Make sure the incoming value is correct." );
-               return jQuery("#first, #yahoo");
+               return jQuery("#yahoo, #first");
        });
-       equals( expected, jQuery('#sap').text(), "Check for appending of jQuery object" );
+       equals( jQuery('#sap').text(), expected, "Check for appending of jQuery object" );
 
-       reset();
+       QUnit.reset();
        old = jQuery("#sap").html();
-       
+
        jQuery("#sap").append(function(i, val){
                equals( val, old, "Make sure the incoming value is correct." );
                return 5;
        });
-       ok( jQuery("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );        
-       
-       reset();
+       ok( jQuery("#sap")[0].innerHTML.match( /5$/ ), "Check for appending a number" );
+
+       QUnit.reset();
+});
+
+test("append the same fragment with events (Bug #6997, 5566)", function () {
+       expect(2 + (document.fireEvent ? 1 : 0));
+       stop(1000);
+
+       var element;
+
+       // This patch modified the way that cloning occurs in IE; we need to make sure that
+       // native event handlers on the original object don't get disturbed when they are
+       // modified on the clone
+       if (!jQuery.support.noCloneEvent && document.fireEvent) {
+               element = jQuery("div:first").click(function () {
+                       ok(true, "Event exists on original after being unbound on clone");
+                       jQuery(this).unbind('click');
+               });
+               var clone = element.clone(true).unbind('click');
+               clone[0].fireEvent('onclick');
+               element[0].fireEvent('onclick');
+
+               // manually clean up detached elements
+               clone.remove();
+       }
+
+       element = jQuery("<a class='test6997'></a>").click(function () {
+               ok(true, "Append second element events work");
+       });
+
+       jQuery("#listWithTabIndex li").append(element)
+               .find('a.test6997').eq(1).click();
+
+       element = jQuery("<li class='test6997'></li>").click(function () {
+               ok(true, "Before second element events work");
+               start();
+       });
+
+       jQuery("#listWithTabIndex li").before(element);
+       jQuery("#listWithTabIndex li.test6997").eq(1).click();
 });
 
 test("appendTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
-       expect(12);
+       expect(16);
+
        var defaultText = 'Try them out:'
        jQuery('<b>buga</b>').appendTo('#first');
        equals( jQuery("#first").text(), defaultText + 'buga', 'Check if text appending works' );
        equals( jQuery('<option value="appendTest">Append Test</option>').appendTo('#select3').parent().find('option:last-child').attr('value'), 'appendTest', 'Appending html options to select element');
 
-       reset();
+       QUnit.reset();
+       var l = jQuery("#first").children().length + 2;
+       jQuery("<strong>test</strong>");
+       jQuery("<strong>test</strong>");
+       jQuery([ jQuery("<strong>test</strong>")[0], jQuery("<strong>test</strong>")[0] ])
+               .appendTo("#first");
+       equals( jQuery("#first").children().length, l, "Make sure the elements were inserted." );
+       equals( jQuery("#first").children().last()[0].nodeName.toLowerCase(), "strong", "Verify the last element." );
+
+       QUnit.reset();
        var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
        jQuery(document.getElementById('first')).appendTo('#sap');
-       equals( expected, jQuery('#sap').text(), "Check for appending of element" );
+       equals( jQuery('#sap').text(), expected, "Check for appending of element" );
 
-       reset();
+       QUnit.reset();
        expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:Yahoo";
        jQuery([document.getElementById('first'), document.getElementById('yahoo')]).appendTo('#sap');
-       equals( expected, jQuery('#sap').text(), "Check for appending of array of elements" );
+       equals( jQuery('#sap').text(), expected, "Check for appending of array of elements" );
 
-       reset();
+       QUnit.reset();
        ok( jQuery(document.createElement("script")).appendTo("body").length, "Make sure a disconnected script can be appended." );
 
-       reset();
+       QUnit.reset();
        expected = "This link has class=\"blog\": Simon Willison's WeblogYahooTry them out:";
-       jQuery("#first, #yahoo").appendTo('#sap');
-       equals( expected, jQuery('#sap').text(), "Check for appending of jQuery object" );
+       jQuery("#yahoo, #first").appendTo('#sap');
+       equals( jQuery('#sap').text(), expected, "Check for appending of jQuery object" );
 
-       reset();
+       QUnit.reset();
        jQuery('#select1').appendTo('#foo');
        t( 'Append select', '#foo select', ['select1'] );
 
-       reset();
+       QUnit.reset();
        var div = jQuery("<div/>").click(function(){
                ok(true, "Running a cloned click.");
        });
@@ -394,7 +487,7 @@ test("appendTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
        jQuery("#main div:last").click();
        jQuery("#moretests div:last").click();
 
-       reset();
+       QUnit.reset();
        var div = jQuery("<div/>").appendTo("#main, #moretests");
 
        equals( div.length, 2, "appendTo returns the inserted elements" );
@@ -404,7 +497,21 @@ test("appendTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
        ok( jQuery("#main div:last").hasClass("test"), "appendTo element was modified after the insertion" );
        ok( jQuery("#moretests div:last").hasClass("test"), "appendTo element was modified after the insertion" );
 
-       reset();
+       QUnit.reset();
+
+       div = jQuery("<div/>");
+       jQuery("<span>a</span><b>b</b>").filter("span").appendTo( div );
+
+       equals( div.children().length, 1, "Make sure the right number of children were inserted." );
+
+       div = jQuery("#moretests div");
+
+       var num = jQuery("#main div").length;
+       div.remove().appendTo("#main");
+
+       equals( jQuery("#main div").length, num, "Make sure all the removed divs were inserted." );
+
+       QUnit.reset();
 });
 
 var testPrepend = function(val) {
@@ -414,20 +521,20 @@ var testPrepend = function(val) {
        equals( result.text(), 'buga' + defaultText, 'Check if text prepending works' );
        equals( jQuery('#select3').prepend(val( '<option value="prependTest">Prepend Test</option>' )).find('option:first-child').attr('value'), 'prependTest', 'Prepending html options to select element');
 
-       reset();
+       QUnit.reset();
        var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
        jQuery('#sap').prepend(val( document.getElementById('first') ));
-       equals( expected, jQuery('#sap').text(), "Check for prepending of element" );
+       equals( jQuery('#sap').text(), expected, "Check for prepending of element" );
 
-       reset();
+       QUnit.reset();
        expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
        jQuery('#sap').prepend(val( [document.getElementById('first'), document.getElementById('yahoo')] ));
-       equals( expected, jQuery('#sap').text(), "Check for prepending of array of elements" );
+       equals( jQuery('#sap').text(), expected, "Check for prepending of array of elements" );
 
-       reset();
+       QUnit.reset();
        expected = "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog";
-       jQuery('#sap').prepend(val( jQuery("#first, #yahoo") ));
-       equals( expected, jQuery('#sap').text(), "Check for prepending of jQuery object" );
+       jQuery('#sap').prepend(val( jQuery("#yahoo, #first") ));
+       equals( jQuery('#sap').text(), expected, "Check for prepending of jQuery object" );
 };
 
 test("prepend(String|Element|Array&lt;Element&gt;|jQuery)", function() {
@@ -440,53 +547,53 @@ test("prepend(Function)", function() {
 
 test("prepend(Function) with incoming value", function() {
        expect(10);
-       
+
        var defaultText = 'Try them out:', old = jQuery('#first').html();
        var result = jQuery('#first').prepend(function(i, val) {
                equals( val, old, "Make sure the incoming value is correct." );
                return '<b>buga</b>';
        });
        equals( result.text(), 'buga' + defaultText, 'Check if text prepending works' );
-       
+
        old = jQuery("#select3").html();
-       
+
        equals( jQuery('#select3').prepend(function(i, val) {
                equals( val, old, "Make sure the incoming value is correct." );
                return '<option value="prependTest">Prepend Test</option>';
        }).find('option:first-child').attr('value'), 'prependTest', 'Prepending html options to select element');
 
-       reset();
+       QUnit.reset();
        var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
        old = jQuery('#sap').html();
-       
+
        jQuery('#sap').prepend(function(i, val) {
                equals( val, old, "Make sure the incoming value is correct." );
                return document.getElementById('first');
        });
-       
-       equals( expected, jQuery('#sap').text(), "Check for prepending of element" );
 
-       reset();
+       equals( jQuery('#sap').text(), expected, "Check for prepending of element" );
+
+       QUnit.reset();
        expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
        old = jQuery('#sap').html();
-       
+
        jQuery('#sap').prepend(function(i, val) {
                equals( val, old, "Make sure the incoming value is correct." );
                return [document.getElementById('first'), document.getElementById('yahoo')];
        });
-       
-       equals( expected, jQuery('#sap').text(), "Check for prepending of array of elements" );
 
-       reset();
+       equals( jQuery('#sap').text(), expected, "Check for prepending of array of elements" );
+
+       QUnit.reset();
        expected = "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog";
        old = jQuery('#sap').html();
-       
+
        jQuery('#sap').prepend(function(i, val) {
                equals( val, old, "Make sure the incoming value is correct." );
-               return jQuery("#first, #yahoo");
+               return jQuery("#yahoo, #first");
        });
-       
-       equals( expected, jQuery('#sap').text(), "Check for prepending of jQuery object" );     
+
+       equals( jQuery('#sap').text(), expected, "Check for prepending of jQuery object" );
 });
 
 test("prependTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
@@ -496,22 +603,22 @@ test("prependTo(String|Element|Array&lt;Element&gt;|jQuery)", function() {
        equals( jQuery('#first').text(), 'buga' + defaultText, 'Check if text prepending works' );
        equals( jQuery('<option value="prependTest">Prepend Test</option>').prependTo('#select3').parent().find('option:first-child').attr('value'), 'prependTest', 'Prepending html options to select element');
 
-       reset();
+       QUnit.reset();
        var expected = "Try them out:This link has class=\"blog\": Simon Willison's Weblog";
        jQuery(document.getElementById('first')).prependTo('#sap');
-       equals( expected, jQuery('#sap').text(), "Check for prepending of element" );
+       equals( jQuery('#sap').text(), expected, "Check for prepending of element" );
 
-       reset();
+       QUnit.reset();
        expected = "Try them out:YahooThis link has class=\"blog\": Simon Willison's Weblog";
        jQuery([document.getElementById('first'), document.getElementById('yahoo')]).prependTo('#sap');
-       equals( expected, jQuery('#sap').text(), "Check for prepending of array of elements" );
+       equals( jQuery('#sap').text(), expected, "Check for prepending of array of elements" );
 
-       reset();
+       QUnit.reset();
        expected = "YahooTry them out:This link has class=\"blog\": Simon Willison's Weblog";
-       jQuery("#first, #yahoo").prependTo('#sap');
-       equals( expected, jQuery('#sap').text(), "Check for prepending of jQuery object" );
+       jQuery("#yahoo, #first").prependTo('#sap');
+       equals( jQuery('#sap').text(), expected, "Check for prepending of jQuery object" );
 
-       reset();
+       QUnit.reset();
        jQuery('<select id="prependSelect1"></select>').prependTo('form:last');
        jQuery('<select id="prependSelect2"><option>Test</option></select>').prependTo('form:last');
 
@@ -522,22 +629,22 @@ var testBefore = function(val) {
        expect(6);
        var expected = 'This is a normal link: bugaYahoo';
        jQuery('#yahoo').before(val( '<b>buga</b>' ));
-       equals( expected, jQuery('#en').text(), 'Insert String before' );
+       equals( jQuery('#en').text(), expected, 'Insert String before' );
 
-       reset();
+       QUnit.reset();
        expected = "This is a normal link: Try them out:Yahoo";
        jQuery('#yahoo').before(val( document.getElementById('first') ));
-       equals( expected, jQuery('#en').text(), "Insert element before" );
+       equals( jQuery('#en').text(), expected, "Insert element before" );
 
-       reset();
+       QUnit.reset();
        expected = "This is a normal link: Try them out:diveintomarkYahoo";
        jQuery('#yahoo').before(val( [document.getElementById('first'), document.getElementById('mark')] ));
-       equals( expected, jQuery('#en').text(), "Insert array of elements before" );
+       equals( jQuery('#en').text(), expected, "Insert array of elements before" );
 
-       reset();
+       QUnit.reset();
        expected = "This is a normal link: diveintomarkTry them out:Yahoo";
-       jQuery('#yahoo').before(val( jQuery("#first, #mark") ));
-       equals( expected, jQuery('#en').text(), "Insert jQuery before" );
+       jQuery('#yahoo').before(val( jQuery("#mark, #first") ));
+       equals( jQuery('#en').text(), expected, "Insert jQuery before" );
 
        var set = jQuery("<div/>").before("<span>test</span>");
        equals( set[0].nodeName.toLowerCase(), "span", "Insert the element before the disconnected node." );
@@ -556,44 +663,44 @@ test("insertBefore(String|Element|Array&lt;Element&gt;|jQuery)", function() {
        expect(4);
        var expected = 'This is a normal link: bugaYahoo';
        jQuery('<b>buga</b>').insertBefore('#yahoo');
-       equals( expected, jQuery('#en').text(), 'Insert String before' );
+       equals( jQuery('#en').text(), expected, 'Insert String before' );
 
-       reset();
+       QUnit.reset();
        expected = "This is a normal link: Try them out:Yahoo";
        jQuery(document.getElementById('first')).insertBefore('#yahoo');
-       equals( expected, jQuery('#en').text(), "Insert element before" );
+       equals( jQuery('#en').text(), expected, "Insert element before" );
 
-       reset();
+       QUnit.reset();
        expected = "This is a normal link: Try them out:diveintomarkYahoo";
        jQuery([document.getElementById('first'), document.getElementById('mark')]).insertBefore('#yahoo');
-       equals( expected, jQuery('#en').text(), "Insert array of elements before" );
+       equals( jQuery('#en').text(), expected, "Insert array of elements before" );
 
-       reset();
+       QUnit.reset();
        expected = "This is a normal link: diveintomarkTry them out:Yahoo";
-       jQuery("#first, #mark").insertBefore('#yahoo');
-       equals( expected, jQuery('#en').text(), "Insert jQuery before" );
+       jQuery("#mark, #first").insertBefore('#yahoo');
+       equals( jQuery('#en').text(), expected, "Insert jQuery before" );
 });
 
 var testAfter = function(val) {
        expect(6);
        var expected = 'This is a normal link: Yahoobuga';
        jQuery('#yahoo').after(val( '<b>buga</b>' ));
-       equals( expected, jQuery('#en').text(), 'Insert String after' );
+       equals( jQuery('#en').text(), expected, 'Insert String after' );
 
-       reset();
+       QUnit.reset();
        expected = "This is a normal link: YahooTry them out:";
        jQuery('#yahoo').after(val( document.getElementById('first') ));
-       equals( expected, jQuery('#en').text(), "Insert element after" );
+       equals( jQuery('#en').text(), expected, "Insert element after" );
 
-       reset();
+       QUnit.reset();
        expected = "This is a normal link: YahooTry them out:diveintomark";
        jQuery('#yahoo').after(val( [document.getElementById('first'), document.getElementById('mark')] ));
-       equals( expected, jQuery('#en').text(), "Insert array of elements after" );
+       equals( jQuery('#en').text(), expected, "Insert array of elements after" );
 
-       reset();
+       QUnit.reset();
        expected = "This is a normal link: YahoodiveintomarkTry them out:";
-       jQuery('#yahoo').after(val( jQuery("#first, #mark") ));
-       equals( expected, jQuery('#en').text(), "Insert jQuery after" );
+       jQuery('#yahoo').after(val( jQuery("#mark, #first") ));
+       equals( jQuery('#en').text(), expected, "Insert jQuery after" );
 
        var set = jQuery("<div/>").after("<span>test</span>");
        equals( set[1].nodeName.toLowerCase(), "span", "Insert the element after the disconnected node." );
@@ -612,48 +719,54 @@ test("insertAfter(String|Element|Array&lt;Element&gt;|jQuery)", function() {
        expect(4);
        var expected = 'This is a normal link: Yahoobuga';
        jQuery('<b>buga</b>').insertAfter('#yahoo');
-       equals( expected, jQuery('#en').text(), 'Insert String after' );
+       equals( jQuery('#en').text(), expected, 'Insert String after' );
 
-       reset();
+       QUnit.reset();
        expected = "This is a normal link: YahooTry them out:";
        jQuery(document.getElementById('first')).insertAfter('#yahoo');
-       equals( expected, jQuery('#en').text(), "Insert element after" );
+       equals( jQuery('#en').text(), expected, "Insert element after" );
 
-       reset();
+       QUnit.reset();
        expected = "This is a normal link: YahooTry them out:diveintomark";
        jQuery([document.getElementById('first'), document.getElementById('mark')]).insertAfter('#yahoo');
-       equals( expected, jQuery('#en').text(), "Insert array of elements after" );
+       equals( jQuery('#en').text(), expected, "Insert array of elements after" );
 
-       reset();
+       QUnit.reset();
        expected = "This is a normal link: YahoodiveintomarkTry them out:";
-       jQuery("#first, #mark").insertAfter('#yahoo');
-       equals( expected, jQuery('#en').text(), "Insert jQuery after" );
+       jQuery("#mark, #first").insertAfter('#yahoo');
+       equals( jQuery('#en').text(), expected, "Insert jQuery after" );
 });
 
 var testReplaceWith = function(val) {
-       expect(15);
+       expect(20);
        jQuery('#yahoo').replaceWith(val( '<b id="replace">buga</b>' ));
        ok( jQuery("#replace")[0], 'Replace element with string' );
        ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after string' );
 
-       reset();
+       QUnit.reset();
        jQuery('#yahoo').replaceWith(val( document.getElementById('first') ));
        ok( jQuery("#first")[0], 'Replace element with element' );
        ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after element' );
 
-       reset();
+       QUnit.reset();
+       jQuery("#main").append('<div id="bar"><div id="baz">Foo</div></div>');
+       jQuery('#baz').replaceWith("Baz");
+       equals( jQuery("#bar").text(),"Baz", 'Replace element with text' );
+       ok( !jQuery("#baz")[0], 'Verify that original element is gone, after element' );
+
+       QUnit.reset();
        jQuery('#yahoo').replaceWith(val( [document.getElementById('first'), document.getElementById('mark')] ));
        ok( jQuery("#first")[0], 'Replace element with array of elements' );
        ok( jQuery("#mark")[0], 'Replace element with array of elements' );
        ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after array of elements' );
 
-       reset();
-       jQuery('#yahoo').replaceWith(val( jQuery("#first, #mark") ));
+       QUnit.reset();
+       jQuery('#yahoo').replaceWith(val( jQuery("#mark, #first") ));
        ok( jQuery("#first")[0], 'Replace element with set of elements' );
        ok( jQuery("#mark")[0], 'Replace element with set of elements' );
        ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after set of elements' );
 
-       reset();
+       QUnit.reset();
        var tmp = jQuery("<div/>").appendTo("body").click(function(){ ok(true, "Newly bound click run." ); });
        var y = jQuery('<div/>').appendTo("body").click(function(){ ok(true, "Previously bound click run." ); });
        var child = y.append("<b>test</b>").find("b").click(function(){ ok(true, "Child bound click run." ); return false; });
@@ -668,7 +781,7 @@ var testReplaceWith = function(val) {
        y.remove();
        child.remove();
 
-       reset();
+       QUnit.reset();
 
        y = jQuery('<div/>').appendTo("body").click(function(){ ok(true, "Previously bound click run." ); });
        var child2 = y.append("<u>test</u>").find("u").click(function(){ ok(true, "Child 2 bound click run." ); return false; });
@@ -680,7 +793,7 @@ var testReplaceWith = function(val) {
        y.remove();
        child2.remove();
 
-       reset();
+       QUnit.reset();
 
        var set = jQuery("<div/>").replaceWith(val("<span>test</span>"));
        equals( set[0].nodeName.toLowerCase(), "span", "Replace the disconnected node." );
@@ -693,6 +806,17 @@ var testReplaceWith = function(val) {
                //"</script>");
        equals(jQuery('.replacewith').length, 1, 'Check number of elements in page.');
        jQuery('.replacewith').remove();
+
+       QUnit.reset();
+
+       jQuery("#main").append("<div id='replaceWith'></div>");
+       equals( jQuery("#main").find("div[id=replaceWith]").length, 1, "Make sure only one div exists." );
+
+       jQuery("#replaceWith").replaceWith( val("<div id='replaceWith'></div>") );
+       equals( jQuery("#main").find("div[id=replaceWith]").length, 1, "Make sure only one div exists." );
+
+       jQuery("#replaceWith").replaceWith( val("<div id='replaceWith'></div>") );
+       equals( jQuery("#main").find("div[id=replaceWith]").length, 1, "Make sure only one div exists." );
 }
 
 test("replaceWith(String|Element|Array&lt;Element&gt;|jQuery)", function() {
@@ -701,7 +825,27 @@ test("replaceWith(String|Element|Array&lt;Element&gt;|jQuery)", function() {
 
 test("replaceWith(Function)", function() {
        testReplaceWith(functionReturningObj);
-})
+
+       expect(21);
+
+       var y = jQuery("#yahoo")[0];
+
+       jQuery(y).replaceWith(function(){
+               equals( this, y, "Make sure the context is coming in correctly." );
+       });
+
+       QUnit.reset();
+});
+
+test("replaceWith(string) for more than one element", function(){
+       expect(3);
+
+       equals(jQuery('#foo p').length, 3, 'ensuring that test data has not changed');
+
+       jQuery('#foo p').replaceWith('<span>bar</span>');
+       equals(jQuery('#foo span').length, 3, 'verify that all the three original element have been replaced');
+       equals(jQuery('#foo p').length, 0, 'verify that all the three original element have been replaced');
+});
 
 test("replaceAll(String|Element|Array&lt;Element&gt;|jQuery)", function() {
        expect(10);
@@ -709,26 +853,38 @@ test("replaceAll(String|Element|Array&lt;Element&gt;|jQuery)", function() {
        ok( jQuery("#replace")[0], 'Replace element with string' );
        ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after string' );
 
-       reset();
+       QUnit.reset();
        jQuery(document.getElementById('first')).replaceAll("#yahoo");
        ok( jQuery("#first")[0], 'Replace element with element' );
        ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after element' );
 
-       reset();
+       QUnit.reset();
        jQuery([document.getElementById('first'), document.getElementById('mark')]).replaceAll("#yahoo");
        ok( jQuery("#first")[0], 'Replace element with array of elements' );
        ok( jQuery("#mark")[0], 'Replace element with array of elements' );
        ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after array of elements' );
 
-       reset();
-       jQuery("#first, #mark").replaceAll("#yahoo");
+       QUnit.reset();
+       jQuery("#mark, #first").replaceAll("#yahoo");
        ok( jQuery("#first")[0], 'Replace element with set of elements' );
        ok( jQuery("#mark")[0], 'Replace element with set of elements' );
        ok( !jQuery("#yahoo")[0], 'Verify that original element is gone, after set of elements' );
 });
 
+test("jQuery.clone() (#8017)", function() {
+
+       expect(2);
+
+       ok( jQuery.clone && jQuery.isFunction( jQuery.clone ) , "jQuery.clone() utility exists and is a function.");
+
+       var main = jQuery("#main")[0],
+                       clone = jQuery.clone( main );
+
+       equals( main.childNodes.length, clone.childNodes.length, "Simple child length to ensure a large dom tree copies correctly" );
+});
+
 test("clone()", function() {
-       expect(30);
+       expect(37);
        equals( 'This is a normal link: Yahoo', jQuery('#en').text(), 'Assert text for #en' );
        var clone = jQuery('#yahoo').clone();
        equals( 'Try them out:Yahoo', jQuery('#first').append(clone).text(), 'Check for clone' );
@@ -742,7 +898,7 @@ test("clone()", function() {
        ];
        for (var i = 0; i < cloneTags.length; i++) {
                var j = jQuery(cloneTags[i]);
-               equals( j[0].tagName, j.clone()[0].tagName, 'Clone a &lt;' + cloneTags[i].substring(1));
+               equals( j[0].tagName, j.clone()[0].tagName, 'Clone a ' + cloneTags[i]);
        }
 
        // using contents will get comments regular, text, and comment nodes
@@ -753,31 +909,97 @@ test("clone()", function() {
                ok( true, "Bound event still exists." );
        });
 
-       div = div.clone(true).clone(true);
+       clone = div.clone(true);
+
+       // manually clean up detached elements
+       div.remove();
+
+       div = clone.clone(true);
+
+       // manually clean up detached elements
+       clone.remove();
+
        equals( div.length, 1, "One element cloned" );
        equals( div[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
        div.trigger("click");
 
+       // manually clean up detached elements
+       div.remove();
+
        div = jQuery("<div/>").append([ document.createElement("table"), document.createElement("table") ]);
        div.find("table").click(function(){
                ok( true, "Bound event still exists." );
        });
 
-       div = div.clone(true);
-       equals( div.length, 1, "One element cloned" );
-       equals( div[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
-       div.find("table:last").trigger("click");
+       clone = div.clone(true);
+       equals( clone.length, 1, "One element cloned" );
+       equals( clone[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
+       clone.find("table:last").trigger("click");
+
+       // manually clean up detached elements
+       div.remove();
+       clone.remove();
+
+       // this is technically an invalid object, but because of the special
+       // classid instantiation it is the only kind that IE has trouble with,
+       // so let's test with it too.
+       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>');
+
+       clone = div.clone(true);
+       equals( clone.length, 1, "One element cloned" );
+       equals( clone.html(), div.html(), "Element contents cloned" );
+       equals( clone[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
+
+       // and here's a valid one.
+       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>');
+
+       clone = div.clone(true);
+       equals( clone.length, 1, "One element cloned" );
+       equals( clone.html(), div.html(), "Element contents cloned" );
+       equals( clone[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
+
+       div = jQuery("<div/>").data({ a: true });
+       clone = div.clone(true);
+       equals( clone.data("a"), true, "Data cloned." );
+       clone.data("a", false);
+       equals( clone.data("a"), false, "Ensure cloned element data object was correctly modified" );
+       equals( div.data("a"), true, "Ensure cloned element data object is copied, not referenced" );
+
+       // manually clean up detached elements
+       div.remove();
+       clone.remove();
+
+       var form = document.createElement("form");
+       form.action = "/test/";
+       var div = document.createElement("div");
+       div.appendChild( document.createTextNode("test") );
+       form.appendChild( div );
+
+       equals( jQuery(form).clone().children().length, 1, "Make sure we just get the form back." );
+
+       equal( jQuery("body").clone().children()[0].id, "qunit-header", "Make sure cloning body works" );
+});
 
-       div = jQuery("<div/>").html('<object height="355" width="425">  <param name="movie" value="http://www.youtube.com/v/JikaHBDoV3k&amp;hl=en">  <param name="wmode" value="transparent"> </object>');
+test("clone(form element) (Bug #3879, #6655)", function() {
+       expect(6);
+       element = jQuery("<select><option>Foo</option><option selected>Bar</option></select>");
 
-       div = div.clone(true);
-       equals( div.length, 1, "One element cloned" );
-       equals( div[0].nodeName.toUpperCase(), "DIV", "DIV element cloned" );
+       equals( element.clone().find("option:selected").val(), element.find("option:selected").val(), "Selected option cloned correctly" );
 
-       div = jQuery("<div/>").data({ a: true, b: true });
-       div = div.clone(true);
-       equals( div.data("a"), true, "Data cloned." );
-       equals( div.data("b"), true, "Data cloned." );
+       element = jQuery("<input type='checkbox' value='foo'>").attr('checked', 'checked');
+       clone = element.clone();
+
+       equals( clone.is(":checked"), element.is(":checked"), "Checked input cloned correctly" );
+       equals( clone[0].defaultValue, "foo", "Checked input defaultValue cloned correctly" );
+       equals( clone[0].defaultChecked, !jQuery.support.noCloneEvent, "Checked input defaultChecked cloned correctly" );
+
+       element = jQuery("<input type='text' value='foo'>");
+       clone = element.clone();
+       equals( clone[0].defaultValue, "foo", "Text input defaultValue cloned correctly" );
+
+       element = jQuery("<textarea>foo</textarea>");
+       clone = element.clone();
+       equals( clone[0].defaultValue, "foo", "Textarea defaultValue cloned correctly" );
 });
 
 if (!isLocal) {
@@ -798,7 +1020,7 @@ test("clone() on XML nodes", function() {
 }
 
 var testHtml = function(valueObj) {
-       expect(22);
+       expect(31);
 
        jQuery.scriptorder = 0;
 
@@ -810,7 +1032,21 @@ var testHtml = function(valueObj) {
        }
        ok( pass, "Set HTML" );
 
-       reset();
+       div = jQuery("<div/>").html( valueObj('<div id="parent_1"><div id="child_1"/></div><div id="parent_2"/>') );
+
+       equals( div.children().length, 2, "Make sure two child nodes exist." );
+       equals( div.children().children().length, 1, "Make sure that a grandchild exists." );
+
+       var space = jQuery("<div/>").html(valueObj("&#160;"))[0].innerHTML;
+       ok( /^\xA0$|^&nbsp;$/.test( space ), "Make sure entities are passed through correctly." );
+       equals( jQuery("<div/>").html(valueObj("&amp;"))[0].innerHTML, "&amp;", "Make sure entities are passed through correctly." );
+
+       jQuery("#main").html(valueObj("<style>.foobar{color:green;}</style>"));
+
+       equals( jQuery("#main").children().length, 1, "Make sure there is a child element." );
+       equals( jQuery("#main").children()[0].nodeName.toUpperCase(), "STYLE", "And that a style element was inserted." );
+
+       QUnit.reset();
        // using contents will get comments regular, text, and comment nodes
        var j = jQuery("#nonnodes").contents();
        j.html(valueObj("<b>bold</b>"));
@@ -837,20 +1073,19 @@ var testHtml = function(valueObj) {
        equals( map[0].childNodes.length, 1, "The area was inserted." );
        equals( map[0].firstChild.nodeName.toLowerCase(), "area", "The area was inserted." );
 
-       reset();
+       QUnit.reset();
 
        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>'));
 
-       stop();
+       jQuery("#main").html(valueObj("<script>ok( true, 'Test repeated injection of script.' );</script>"));
+       jQuery("#main").html(valueObj("<script>ok( true, 'Test repeated injection of script.' );</script>"));
+       jQuery("#main").html(valueObj("<script>ok( true, 'Test repeated injection of script.' );</script>"));
 
        jQuery("#main").html(valueObj('<script type="text/javascript">ok( true, "jQuery().html().evalScripts() Evals Scripts Twice in Firefox, see #975 (1)" );</script>'));
 
        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>'));
 
-       // it was decided that waiting to execute ALL scripts makes sense since nested ones have to wait anyway so this test case is changed, see #1959
        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>"));
-
-       setTimeout( start, 100 );
 }
 
 test("html(String)", function() {
@@ -859,18 +1094,29 @@ test("html(String)", function() {
 
 test("html(Function)", function() {
        testHtml(functionReturningObj);
+
+       expect(33);
+
+       QUnit.reset();
+
+       jQuery("#main").html(function(){
+               return jQuery(this).text();
+       });
+
+       ok( !/</.test( jQuery("#main").html() ), "Replace html with text." );
+       ok( jQuery("#main").html().length > 0, "Make sure text exists." );
 });
 
 test("html(Function) with incoming value", function() {
        expect(20);
-       
+
        var div = jQuery("#main > div"), old = div.map(function(){ return jQuery(this).html() });
-       
+
        div.html(function(i, val) {
                equals( val, old[i], "Make sure the incoming value is correct." );
                return "<b>test</b>";
        });
-       
+
        var pass = true;
        div.each(function(){
                if ( this.childNodes.length !== 1 ) {
@@ -879,26 +1125,31 @@ test("html(Function) with incoming value", function() {
        })
        ok( pass, "Set HTML" );
 
-       reset();
+       QUnit.reset();
        // using contents will get comments regular, text, and comment nodes
        var j = jQuery("#nonnodes").contents();
        old = j.map(function(){ return jQuery(this).html(); });
-       
+
        j.html(function(i, val) {
                equals( val, old[i], "Make sure the incoming value is correct." );
                return "<b>bold</b>";
        });
-       
+
+       // Handle the case where no comment is in the document
+       if ( j.length === 2 ) {
+               equals( null, null, "Make sure the incoming value is correct." );
+       }
+
        j.find('b').removeData();
        equals( j.html().replace(/ xmlns="[^"]+"/g, "").toLowerCase(), "<b>bold</b>", "Check node,textnode,comment with html()" );
-       
+
        var $div = jQuery('<div />');
-       
+
        equals( $div.html(function(i, val) {
                equals( val, "", "Make sure the incoming value is correct." );
                return 5;
        }).html(), '5', 'Setting a number as html' );
-       
+
        equals( $div.html(function(i, val) {
                equals( val, "5", "Make sure the incoming value is correct." );
                return 0;
@@ -909,16 +1160,16 @@ test("html(Function) with incoming value", function() {
                equals( val, "", "Make sure the incoming value is correct." );
                return insert;
        }).html().replace(/>/g, "&gt;"), insert, "Verify escaped insertion." );
-       
+
        equals( $div2.html(function(i, val) {
                equals( val.replace(/>/g, "&gt;"), insert, "Make sure the incoming value is correct." );
                return "x" + insert;
        }).html().replace(/>/g, "&gt;"), "x" + insert, "Verify escaped insertion." );
-       
+
        equals( $div2.html(function(i, val) {
                equals( val.replace(/>/g, "&gt;"), "x" + insert, "Make sure the incoming value is correct." );
                return " " + insert;
-       }).html().replace(/>/g, "&gt;"), " " + insert, "Verify escaped insertion." );   
+       }).html().replace(/>/g, "&gt;"), " " + insert, "Verify escaped insertion." );
 });
 
 var testRemove = function(method) {
@@ -933,7 +1184,7 @@ var testRemove = function(method) {
 
        equals( first.data("foo"), method == "remove" ? null : "bar" );
 
-       reset();
+       QUnit.reset();
        jQuery("#ap").children()[method]("a");
        ok( jQuery("#ap").text().length > 10, "Check text is not removed" );
        equals( jQuery("#ap").children().length, 1, "Check filtered remove" );
@@ -942,19 +1193,26 @@ var testRemove = function(method) {
        equals( jQuery("#ap").children().length, 0, "Check multi-filtered remove" );
 
        // using contents will get comments regular, text, and comment nodes
-       equals( jQuery("#nonnodes").contents().length, 3, "Check node,textnode,comment remove works" );
+       // Handle the case where no comment is in the document
+       ok( jQuery("#nonnodes").contents().length >= 2, "Check node,textnode,comment remove works" );
        jQuery("#nonnodes").contents()[method]();
        equals( jQuery("#nonnodes").contents().length, 0, "Check node,textnode,comment remove works" );
 
-       reset();
+       // manually clean up detached elements
+       if (method === "detach") {
+               first.remove();
+       }
+
+       QUnit.reset();
 
        var count = 0;
        var first = jQuery("#ap").children(":first");
-       var cleanUp = first.click(function() { count++ })[method]().appendTo("body").click();
-       
+       var cleanUp = first.click(function() { count++ })[method]().appendTo("#main").click();
+
        equals( method == "remove" ? 0 : 1, count );
-       
-       cleanUp.detach();
+
+       // manually clean up detached elements
+       cleanUp.remove();
 };
 
 test("remove()", function() {
@@ -976,3 +1234,96 @@ test("empty()", function() {
        equals( j.html(), "", "Check node,textnode,comment empty works" );
 });
 
+test("jQuery.cleanData", function() {
+       expect(14);
+
+       var type, pos, div, child;
+
+       type = "remove";
+
+       // Should trigger 4 remove event
+       div = getDiv().remove();
+
+       // Should both do nothing
+       pos = "Outer";
+       div.trigger("click");
+
+       pos = "Inner";
+       div.children().trigger("click");
+
+       type = "empty";
+       div = getDiv();
+       child = div.children();
+
+       // Should trigger 2 remove event
+       div.empty();
+
+       // Should trigger 1
+       pos = "Outer";
+       div.trigger("click");
+
+       // Should do nothing
+       pos = "Inner";
+       child.trigger("click");
+
+       // Should trigger 2
+       div.remove();
+
+       type = "html";
+
+       div = getDiv();
+       child = div.children();
+
+       // Should trigger 2 remove event
+       div.html("<div></div>");
+
+       // Should trigger 1
+       pos = "Outer";
+       div.trigger("click");
+
+       // Should do nothing
+       pos = "Inner";
+       child.trigger("click");
+
+       // Should trigger 2
+       div.remove();
+
+       function getDiv() {
+               var div = jQuery("<div class='outer'><div class='inner'></div></div>").click(function(){
+                       ok( true, type + " " + pos + " Click event fired." );
+               }).focus(function(){
+                       ok( true, type + " " + pos + " Focus event fired." );
+               }).find("div").click(function(){
+                       ok( false, type + " " + pos + " Click event fired." );
+               }).focus(function(){
+                       ok( false, type + " " + pos + " Focus event fired." );
+               }).end().appendTo("body");
+
+               div[0].detachEvent = div[0].removeEventListener = function(t){
+                       ok( true, type + " Outer " + t + " event unbound" );
+               };
+
+               div[0].firstChild.detachEvent = div[0].firstChild.removeEventListener = function(t){
+                       ok( true, type + " Inner " + t + " event unbound" );
+               };
+
+               return div;
+       }
+});
+
+test("jQuery.buildFragment - no plain-text caching (Bug #6779)", function() {
+       expect(1);
+
+       // DOM manipulation fails if added text matches an Object method
+       var $f = jQuery( "<div />" ).appendTo( "#main" ),
+               bad = [ "start-", "toString", "hasOwnProperty", "append", "here&there!", "-end" ];
+
+       for ( var i=0; i < bad.length; i++ ) {
+               try {
+                       $f.append( bad[i] );
+               }
+               catch(e) {}
+       }
+    equals($f.text(), bad.join(''), "Cached strings that match Object properties");
+       $f.remove();
+});