Fix #14290. Don't throw if text node is appended to table. Close gh-1371.

(cherry picked from commit ec3ac9a247)
This commit is contained in:
Dave Methvin 2013-09-17 23:29:02 -04:00
parent 60004e68f8
commit 75a0b4a73f

View File

@ -105,7 +105,7 @@ function fixDefaultChecked( elem ) {
// Manipulating tables requires a tbody // Manipulating tables requires a tbody
function manipulationTarget( elem, content ) { function manipulationTarget( elem, content ) {
return jQuery.nodeName( elem, "table" ) && return jQuery.nodeName( elem, "table" ) &&
jQuery.nodeName( content.nodeType === 1 ? content : content.firstChild, "tr" ) ? jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ?
elem.getElementsByTagName("tbody")[0] || elem.getElementsByTagName("tbody")[0] ||
elem.appendChild( elem.ownerDocument.createElement("tbody") ) : elem.appendChild( elem.ownerDocument.createElement("tbody") ) :