diff options
author | Oleg <markelog@gmail.com> | 2012-12-28 20:06:04 +0400 |
---|---|---|
committer | Oleg <markelog@gmail.com> | 2012-12-28 20:06:04 +0400 |
commit | acb206a4886f53c3eb9628e17d699dbb1b96ef25 (patch) | |
tree | 704c3844c4e534855c7355a74fd84c59167aef24 /test/unit/manipulation.js | |
parent | ecd106280abe7ac7e09a532d42d3441d4b910d56 (diff) | |
download | jquery-acb206a4886f53c3eb9628e17d699dbb1b96ef25.tar.gz jquery-acb206a4886f53c3eb9628e17d699dbb1b96ef25.zip |
Add test for td append
Diffstat (limited to 'test/unit/manipulation.js')
-rw-r--r-- | test/unit/manipulation.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index e1850a4f7..d5c35ec1b 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -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 ); }); |