diff options
author | jeresig <jeresig@gmail.com> | 2010-03-05 00:14:47 -0500 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2010-03-05 00:14:47 -0500 |
commit | 145f2f045901af5f03f4bdb8a2192027b56f8b30 (patch) | |
tree | 965c16328452994b2c32a20b13d1b4fd8144b593 /test | |
parent | 2c08004f6d4e7f11a875190e132d204a25cb9418 (diff) | |
download | jquery-145f2f045901af5f03f4bdb8a2192027b56f8b30.tar.gz jquery-145f2f045901af5f03f4bdb8a2192027b56f8b30.zip |
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.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/manipulation.js | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index e86eb3b83..d1fd823b7 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -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'); reset(); - var l = jQuery("#first").children().length + 3; - jQuery("body").map(function(){ - return jQuery("<strong></strong><b></b><b></b>").get(); - }).appendTo("p"); + 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(), "b", "Verify the last element." ); + equals( jQuery("#first").children().last()[0].nodeName.toLowerCase(), "strong", "Verify the last element." ); reset(); var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:"; |