]> source.dussan.org Git - jquery.git/commitdiff
wrapMap.thead = wrapMap.tr
authorOleg <markelog@gmail.com>
Fri, 28 Dec 2012 15:50:22 +0000 (19:50 +0400)
committerOleg <markelog@gmail.com>
Fri, 28 Dec 2012 15:50:22 +0000 (19:50 +0400)
Add support comments

src/manipulation.js
test/unit/manipulation.js

index 3c2cea824279056d5b5765d493300d62efb0eebe..1f2aef97a97c21a25899c17ca9eb634d345699da 100644 (file)
@@ -12,8 +12,7 @@ var rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>
 
                // Support: IE 9
                option: [ 1, "<select multiple='multiple'>" ],
-               thead: [ 1, "<table>"  ],
-               tr: [ 2, "<table><tbody>" ],
+               tr: [ 1, "<table>" ],
                col: [ 2, "<table><tbody></tbody><colgroup>" ],
                td: [ 3, "<table><tbody><tr>" ],
                _default: [ 0, "" ]
@@ -21,7 +20,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.thead;
+wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead = wrapMap.tr;
 wrapMap.th = wrapMap.td;
 
 jQuery.fn.extend({
index bf61045f484ecb46a9bab489d23c50f705d0b441..e1850a4f795c21795200a2069fb1511098377c48 100644 (file)
@@ -395,7 +395,7 @@ var testAppendForObject = function( valueObj, isFragment ) {
 
 var testAppend = function( valueObj ) {
 
-       expect( 66 );
+       expect( 67 );
 
        testAppendForObject( valueObj, false );
        testAppendForObject( valueObj, true );
@@ -460,7 +460,7 @@ var testAppend = function( valueObj ) {
 
        $table = jQuery("#table");
 
-       jQuery.each( "thead tbody tfoot colgroup caption".split(" "), function( i, name ) {
+       jQuery.each( "thead tbody tfoot colgroup caption tr".split(" "), function( i, name ) {
                $table.append( valueObj( "<" + name + "/>" ) );
                equal( $table.find( name ).length, 1, "Append " + name );
        });