var testAppend = function( valueObj ) {
- expect( 68 );
+ expect( 75 );
testAppendForObject( valueObj, false );
testAppendForObject( valueObj, true );
jQuery.each( "thead tbody tfoot colgroup caption tr td".split(" "), function( i, name ) {
$table.append( valueObj( "<" + name + "/>" ) );
equal( $table.find( name ).length, 1, "Append " + name );
+ ok( jQuery.clean( ["<" + name + "/>"] ).length, name + " wrapped correctly" );
});
jQuery("#table colgroup").append( valueObj("<col/>") );