From: Oleg Date: Wed, 19 Dec 2012 16:31:36 +0000 (+0400) Subject: Remove removal of container children through removeChild method X-Git-Tag: 2.0.0b1~59^2~47 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=eac4e8e2510485c452af3614ddb8042ceec1fc34;p=jquery.git Remove removal of container children through removeChild method --- diff --git a/src/manipulation.js b/src/manipulation.js index d2f17b87d..4b33e64c6 100644 --- a/src/manipulation.js +++ b/src/manipulation.js @@ -620,11 +620,6 @@ jQuery.extend({ // Fix #12392 for WebKit and IE > 9 tmp.textContent = ""; - // Fix #12392 for oldIE - while ( tmp.firstChild ) { - tmp.removeChild( tmp.firstChild ); - } - // Remember the top-level container for proper cleanup tmp = container.lastChild; }