From 409f5d1ba0fe572e8a208a550c42aed516fc4fe3 Mon Sep 17 00:00:00 2001 From: Scott González Date: Tue, 7 Sep 2010 12:15:34 -0400 Subject: Core: Improvements to minHeight support test. Thanks jdalton. --- ui/jquery.ui.core.js | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'ui') diff --git a/ui/jquery.ui.core.js b/ui/jquery.ui.core.js index 37a9892e3..ff7815c75 100644 --- a/ui/jquery.ui.core.js +++ b/ui/jquery.ui.core.js @@ -217,14 +217,18 @@ $.extend( $.expr[ ":" ], { // support $(function() { - var div = document.createElement( "div" ); - div.style.minHeight = "100px"; + var div = document.createElement( "div" ), + body = document.body; - document.body.appendChild( div ); - $.support.minHeight = div.offsetHeight === 100; - document.body.removeChild( div ).style.display = "none"; + $.extend( div.style, { + minHeight: "100px", + height: "auto", + padding: 0, + borderWidth: 0 + }); - div = null; + $.support.minHeight = body.appendChild( div ).offsetHeight === 100; + body.removeChild( div ); }); -- cgit v1.2.3