]> source.dussan.org Git - jquery.git/commitdiff
Add test for td append
authorOleg <markelog@gmail.com>
Fri, 28 Dec 2012 16:06:04 +0000 (20:06 +0400)
committerOleg <markelog@gmail.com>
Fri, 28 Dec 2012 16:06:04 +0000 (20:06 +0400)
test/unit/manipulation.js

index e1850a4f795c21795200a2069fb1511098377c48..d5c35ec1b9789878f8ced8d300287107e6fa4311 100644 (file)
@@ -395,7 +395,7 @@ var testAppendForObject = function( valueObj, isFragment ) {
 
 var testAppend = function( valueObj ) {
 
-       expect( 67 );
+       expect( 68 );
 
        testAppendForObject( valueObj, false );
        testAppendForObject( valueObj, true );
@@ -460,7 +460,7 @@ var testAppend = function( valueObj ) {
 
        $table = jQuery("#table");
 
-       jQuery.each( "thead tbody tfoot colgroup caption tr".split(" "), function( i, name ) {
+       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 );
        });