From: Scott González Date: Fri, 20 Jan 2012 02:37:21 +0000 (-0500) Subject: Core: Access offsetHeight on div for support tests to avoid a layout bug in IE 9... X-Git-Tag: 1.9m7~100 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=956c2cd2a5a44d40a9b2fb0a8c05f765fa302c92;p=jquery-ui.git Core: Access offsetHeight on div for support tests to avoid a layout bug in IE 9. Fixes #8026 - minHeight support test affects page layout in IE 9. --- diff --git a/ui/jquery.ui.core.js b/ui/jquery.ui.core.js index f0cf89ba7..d777d6d49 100644 --- a/ui/jquery.ui.core.js +++ b/ui/jquery.ui.core.js @@ -223,6 +223,11 @@ $(function() { var body = document.body, div = body.appendChild( div = document.createElement( "div" ) ); + // access offsetHeight before setting the style to prevent a layout bug + // in IE 9 which causes the elemnt to continue to take up space even + // after it is removed from the DOM (#8026) + div.offsetHeight; + $.extend( div.style, { minHeight: "100px", height: "auto",