I take that back! It was a bug, but the cache had to be triggered and a collection of cached nodes had to be passed in (an odd case to be sure). Fixes #6227.
This commit is contained in:
parent
2c08004f6d
commit
145f2f0459
|
@ -384,12 +384,13 @@ test("appendTo(String|Element|Array<Element>|jQuery)", function() {
|
||||||
equals( jQuery('<option value="appendTest">Append Test</option>').appendTo('#select3').parent().find('option:last-child').attr('value'), 'appendTest', 'Appending html options to select element');
|
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();
|
reset();
|
||||||
var l = jQuery("#first").children().length + 3;
|
var l = jQuery("#first").children().length + 2;
|
||||||
jQuery("body").map(function(){
|
jQuery("<strong>test</strong>");
|
||||||
return jQuery("<strong></strong><b></b><b></b>").get();
|
jQuery("<strong>test</strong>");
|
||||||
}).appendTo("p");
|
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().length, l, "Make sure the elements were inserted." );
|
||||||
equals( jQuery("#first").children().last()[0].nodeName.toLowerCase(), "b", "Verify the last element." );
|
equals( jQuery("#first").children().last()[0].nodeName.toLowerCase(), "strong", "Verify the last element." );
|
||||||
|
|
||||||
reset();
|
reset();
|
||||||
var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
|
var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";
|
||||||
|
|
Loading…
Reference in a new issue