git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
2c08004
)
I take that back! It was a bug, but the cache had to be triggered and a collection...
author
jeresig
<jeresig@gmail.com>
Fri, 5 Mar 2010 05:14:47 +0000
(
00:14
-0500)
committer
jeresig
<jeresig@gmail.com>
Fri, 5 Mar 2010 05:14:47 +0000
(
00:14
-0500)
test/unit/manipulation.js
patch
|
blob
|
history
diff --git
a/test/unit/manipulation.js
b/test/unit/manipulation.js
index
e86eb3b
..
d1fd823
100644
(file)
--- 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();
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().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:";
reset();
var expected = "This link has class=\"blog\": Simon Willison's WeblogTry them out:";