From: Scott González Date: Thu, 8 Nov 2012 16:52:27 +0000 (-0500) Subject: Fix #12869. Zoom the body after support tests; avoids layout changes in IE8/9/10... X-Git-Tag: 1.9.0b1~86 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=84629a9b876f6969777b43f3229b62b43bb624d2;p=jquery.git Fix #12869. Zoom the body after support tests; avoids layout changes in IE8/9/10 in IE7 mode. Close gh-1025. --- diff --git a/src/support.js b/src/support.js index 1001f407a..2657a182f 100644 --- a/src/support.js +++ b/src/support.js @@ -254,7 +254,9 @@ jQuery.support = (function() { div.firstChild.style.width = "5px"; support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); - container.style.zoom = 1; + // Prevent IE 6 from affecting layout for positioned elements #11048 + // Prevent IE from shrinking the body in IE 7 mode #12869 + body.style.zoom = 1; } // Null elements to avoid leaks in IE