diff --git a/src/support.js b/src/support.js index f2fa161e0..e881b040e 100644 --- a/src/support.js +++ b/src/support.js @@ -283,6 +283,10 @@ jQuery.support = (function() { support.pixelMargin = ( window.getComputedStyle( div, null ) || { marginTop: 0 } ).marginTop !== "1%"; } + if ( typeof container.style.zoom !== "undefined" ) { + container.style.zoom = 1; + } + body.removeChild( container ); div = container = null;