Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added css hook to work around bug in WebKit computed margin-right. Fixes
 #3333 - .css("marginRight") is incorrect in WebKit
  • Loading branch information
rdworth committed Mar 24, 2011
1 parent 0cf336d commit c3c507e
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
19 changes: 19 additions & 0 deletions src/css.js
Expand Up @@ -240,6 +240,25 @@ if ( !jQuery.support.opacity ) {
};
}

jQuery(function() {
// This hook cannot be added until DOM ready because the support test
// for it is not run until after DOM ready
if ( !jQuery.support.reliableMarginRight ) {
jQuery.cssHooks.marginRight = {
get: function( elem, computed ) {
// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
// Work around by temporarily setting element display to inline-block
var ret = "0px",
display = elem.style.display;
elem.style.display = "inline-block";
ret = getComputedStyle( elem, "margin-right", "margin-right" );
elem.style.display = display;

This comment has been minimized.

Copy link
@timmywil

timmywil Mar 24, 2011

Member

This functionality is already written in jQuery.swap. You could utilize that to save space. There's an old pull where I wrote a CSS hook for marginRight that's shorter. You could just swap display instead if you'd like to stick with that. See #208

This comment has been minimized.

Copy link
@rdworth

rdworth Mar 24, 2011

Author Contributor

Thanks for the help #287

return ret;
}
}
}
});

if ( document.defaultView && document.defaultView.getComputedStyle ) {
getComputedStyle = function( elem, newName, name ) {
var ret, defaultView, computedStyle;
Expand Down
14 changes: 13 additions & 1 deletion src/support.js
Expand Up @@ -67,7 +67,8 @@
boxModel: null,
inlineBlockNeedsLayout: false,
shrinkWrapBlocks: false,
reliableHiddenOffsets: true
reliableHiddenOffsets: true,
reliableMarginRight: true
};

input.checked = true;
Expand Down Expand Up @@ -188,6 +189,17 @@
jQuery.support.reliableHiddenOffsets = jQuery.support.reliableHiddenOffsets && tds[0].offsetHeight === 0;
div.innerHTML = "";

// Check if div with explicit width and no margin-right incorrectly
// gets computed margin-right based on width of container. For more
// info see bug #3333
// Fails in WebKit before Feb 2011 nightlies
// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right
if ( document.defaultView && document.defaultView.getComputedStyle ) {
div.style.width = "1px";
div.style.marginRight = "0";
jQuery.support.reliableMarginRight = ( parseInt(document.defaultView.getComputedStyle(div).marginRight, 10) || 0 ) === 0;
}

body.removeChild( div ).style.display = "none";
div = tds = null;
});
Expand Down
12 changes: 12 additions & 0 deletions test/unit/css.js
Expand Up @@ -333,3 +333,15 @@ test("internal ref to elem.runtimeStyle (bug #7608)", function () {

ok( result, "elem.runtimeStyle does not throw exception" );
});

test("marginRight computed style (bug #3333)", function() {
expect(1);

var $div = jQuery("#foo");
$div.css({
width: "1px",
marginRight: 0
});

equals($div.css("marginRight"), "0px");
});

0 comments on commit c3c507e

Please sign in to comment.