]> source.dussan.org Git - jquery.git/commitdiff
Fix #13818: Add wrapMap entry for col element
authorOleg <markelog@gmail.com>
Wed, 24 Apr 2013 18:15:41 +0000 (22:15 +0400)
committerOleg <markelog@gmail.com>
Wed, 24 Apr 2013 18:15:41 +0000 (22:15 +0400)
src/manipulation.js
test/unit/manipulation.js

index 6204ca7c9a6dcaa927cfd4223b3dca37bcc81a99..e323a10ec700d4805ab4af0bf622402398ec4247 100644 (file)
@@ -16,6 +16,7 @@ var rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>
                option: [ 1, "<select multiple='multiple'>", "</select>" ],
 
                thead: [ 1, "<table>", "</table>" ],
+               col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
                tr: [ 2, "<table><tbody>", "</tbody></table>" ],
                td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
 
@@ -25,7 +26,7 @@ var rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>
 // Support: IE 9
 wrapMap.optgroup = wrapMap.option;
 
-wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.col = wrapMap.thead;
+wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
 wrapMap.th = wrapMap.td;
 
 jQuery.fn.extend({
index c487efacb1a20ebcd8c1146e8277c32224f984f8..38d38a2b6044178e8ba226c1a59231dd269da986 100644 (file)
@@ -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 + "><" + tag + "></" + tag + ">" ).each(function() {
+                       ok( jQuery.nodeName( this, tag ), tag + " elements with closing tag created correctly" );
+               });
+       });
+});