});
test("clone()", function() {
- expect(37);
+ expect(40);
- 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' );
- equals( 'This is a normal link: Yahoo', jQuery('#en').text(), 'Reassert text for #en' );
+ 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" );
+ equals( "This is a normal link: Yahoo", jQuery("#en").text(), "Reassert text for #en" );
var cloneTags = [
"<table/>", "<tr/>", "<td/>", "<div/>",