diff options
author | Rick Waldron waldron.rick@gmail.com <waldron.rick@gmail.com> | 2012-03-23 11:31:53 -0400 |
---|---|---|
committer | Rick Waldron waldron.rick@gmail.com <waldron.rick@gmail.com> | 2012-03-23 11:54:12 -0400 |
commit | 2795a8390c1986200bf4e00158dbf3ad2da8d898 (patch) | |
tree | 504b8ae0bb77a02338d87de0b0341e83fb2f3e88 /src/manipulation.js | |
parent | 379a1370164ff6b0fc57e3b10e1867ae867e2850 (diff) | |
download | jquery-2795a8390c1986200bf4e00158dbf3ad2da8d898.tar.gz jquery-2795a8390c1986200bf4e00158dbf3ad2da8d898.zip |
Ensure innerHTML of src/dest clone nodes is correctly set. Fixes #10324
Signed-off-by: Rick Waldron waldron.rick@gmail.com <waldron.rick@gmail.com>
Diffstat (limited to 'src/manipulation.js')
-rw-r--r-- | src/manipulation.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/manipulation.js b/src/manipulation.js index 2a3757904..9b9872a5c 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -435,6 +435,13 @@ function cloneFixAttributes( src, dest ) { if ( nodeName === "object" ) { dest.outerHTML = src.outerHTML; + // This path appears unavoidable for IE9. When cloning an object + // element in IE9, the outerHTML strategy above is not sufficient. + // If the src has innerHTML and the destination does not, + // copy the src.innerHTML into the dest.innerHTML. #10324 + if ( jQuery.support.html5Clone && (src.innerHTML && !jQuery.trim(dest.innerHTML)) ) { + dest.innerHTML = src.innerHTML; + } } else if ( nodeName === "input" && (src.type === "checkbox" || src.type === "radio") ) { // IE6-8 fails to persist the checked state of a cloned checkbox // or radio button. Worse, IE6-7 fail to give the cloned element |