From 3a6194076b8b7ab5a9d9f5e6ec602db2ab427d3e Mon Sep 17 00:00:00 2001 From: Oleg Date: Wed, 24 Apr 2013 22:15:41 +0400 Subject: Fix #13818: Add wrapMap entry for col element --- test/unit/manipulation.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'test') diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index c487efacb..38d38a2b6 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -2105,3 +2105,17 @@ test( "Make sure specific elements with content created correctly (#13232)", 20, ok( jQuery.nodeName( this, results[ i ] ) ); }); }); + +test( "Validate creation of multiple quantities of certain elements (#13818)", 44, function() { + var tags = [ "thead", "tbody", "tfoot", "colgroup", "col", "caption", "tr", "th", "td", "optgroup", "option" ]; + + jQuery.each( tags, function( index, tag ) { + jQuery( "<" + tag + "/><" + tag + "/>" ).each(function() { + ok( jQuery.nodeName( this, tag ), tag + " empty elements created correctly" ); + }); + + jQuery( "<" + this + "><" + tag + ">" ).each(function() { + ok( jQuery.nodeName( this, tag ), tag + " elements with closing tag created correctly" ); + }); + }); +}); -- cgit v1.2.3