From ddf925b77007bb6f219c7bc56166753177a86dec Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Mon, 25 Jul 2011 14:02:37 -0400 Subject: [PATCH] Non-breaking-space should achieve the same effect as a visible character. Fixes #9634 --- src/support.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support.js b/src/support.js index 882b84a2f..ec639348c 100644 --- a/src/support.js +++ b/src/support.js @@ -184,7 +184,7 @@ jQuery.support = (function() { support.shrinkWrapBlocks = ( div.offsetWidth !== 2 ); } - div.innerHTML = "
t
"; + div.innerHTML = "
 
"; tds = div.getElementsByTagName( "td" ); // Check if table cells still have offsetWidth/Height when they are set -- 2.39.5