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

index 19e20dd06495f93f32308042d01ba24906bd7863..d9b0141871f471af4c04b761f0ee90d62b14454c 100644 (file)
@@ -395,7 +395,7 @@ var testAppendForObject = function( valueObj, isFragment ) {
 
 var testAppend = function( valueObj ) {
 
-       expect( 75 );
+       expect( 77 );
 
        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 td".split(" "), function( i, name ) {
+       jQuery.each( "thead tbody tfoot colgroup caption tr th 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" );