aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2012-01-19 21:37:21 -0500
committerScott González <scott.gonzalez@gmail.com>2012-01-19 21:38:44 -0500
commit9e4455f52d721f2efd4c91037bcd3daf24635599 (patch)
tree8fbe412e0108d210413d61eea8e007788f2c61dd
parente2a21129cb3e079ffa2709db4fae1c6dc4b0b5c4 (diff)
downloadjquery-ui-9e4455f52d721f2efd4c91037bcd3daf24635599.tar.gz
jquery-ui-9e4455f52d721f2efd4c91037bcd3daf24635599.zip
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.
(cherry picked from commit 956c2cd2a5a44d40a9b2fb0a8c05f765fa302c92)
-rw-r--r--ui/jquery.ui.core.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/jquery.ui.core.js b/ui/jquery.ui.core.js
index 1ca2c6f69..aed64dd8b 100644
--- a/ui/jquery.ui.core.js
+++ b/ui/jquery.ui.core.js
@@ -225,6 +225,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",