Skip to content

Commit

Permalink
Landing pull request 478. Apply fixes as noted by Diego Perini, David…
Browse files Browse the repository at this point in the history
… Murdoch & Mathias Bynens. Supplements #9634 Fixes #9634.

    More Details:
     - #478
     - http://bugs.jquery.com/ticket/9634
  • Loading branch information
rwaldron authored and timmywil committed Sep 1, 2011
1 parent f035c44 commit a422738
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/support.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jQuery.support = (function() {

// Preliminary tests
div.setAttribute("className", "t");
div.innerHTML = " <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>";
div.innerHTML = " <link><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type=checkbox>";


all = div.getElementsByTagName( "*" );
a = div.getElementsByTagName( "a" )[ 0 ];
Expand Down Expand Up @@ -152,8 +153,8 @@ jQuery.support = (function() {
if ( body ) {
jQuery.extend( testElementStyle, {
position: "absolute",
left: -1000,
top: -1000
left: "-1000px",
top: "-1000px"
});
}
for ( i in testElementStyle ) {
Expand Down Expand Up @@ -185,7 +186,7 @@ jQuery.support = (function() {
support.shrinkWrapBlocks = ( div.offsetWidth !== 2 );
}

div.innerHTML = "<table><tr><td style='padding:0;border:0;display:none'></td><td>&nbsp;</td></tr></table>";
div.innerHTML = "<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>";
tds = div.getElementsByTagName( "td" );

// Check if table cells still have offsetWidth/Height when they are set
Expand Down

0 comments on commit a422738

Please sign in to comment.