Skip to content

Commit 7bb48a0

Browse files
committed
CSS: Make offsetHeight( true ), etc. include negative margins
This regressed in gh-3656 as the added logic to include scroll gutters in `.innerWidth()` / `.innerHeight()` didn't take negative margins into account. This broke handling of negative margins in `.offsetHeight( true )` and `.offsetWidth( true )`. To fix it, calculate margin delta separately and only add it after the scroll gutter adjustment logic. Fixes gh-3982 Closes gh-5234 Ref gh-3656 (cherry picked from commit bce13b7)
1 parent 9ab26aa commit 7bb48a0

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

src/css.js

+6-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ function setPositiveNumber( _elem, value, subtract ) {
5151
function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {
5252
var i = dimension === "width" ? 1 : 0,
5353
extra = 0,
54-
delta = 0;
54+
delta = 0,
55+
marginDelta = 0;
5556

5657
// Adjustment may not be necessary
5758
if ( box === ( isBorderBox ? "border" : "content" ) ) {
@@ -61,8 +62,10 @@ function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computed
6162
for ( ; i < 4; i += 2 ) {
6263

6364
// Both box models exclude margin
65+
// Count margin delta separately to only add it after scroll gutter adjustment.
66+
// This is needed to make negative margins work with `outerHeight( true )` (gh-3982).
6467
if ( box === "margin" ) {
65-
delta += jQuery.css( elem, box + cssExpand[ i ], true, styles );
68+
marginDelta += jQuery.css( elem, box + cssExpand[ i ], true, styles );
6669
}
6770

6871
// If we get here with a content-box, we're seeking "padding" or "border" or "margin"
@@ -113,7 +116,7 @@ function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computed
113116
) ) || 0;
114117
}
115118

116-
return delta;
119+
return delta + marginDelta;
117120
}
118121

119122
function getWidthOrHeight( elem, dimension, extra ) {

test/unit/dimensions.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ QUnit.test( "outerWidth()", function( assert ) {
240240
} );
241241

242242
QUnit.test( "outerHeight()", function( assert ) {
243-
assert.expect( 12 );
243+
assert.expect( 14 );
244244

245245
var $div, div,
246246
$win = jQuery( window ),
@@ -268,6 +268,11 @@ QUnit.test( "outerHeight()", function( assert ) {
268268
$div.css( "display", "none" );
269269
assert.equal( $div.outerHeight( true ), 94, "Test hidden div with padding, border and margin with margin option" );
270270

271+
$div.css( "display", "" );
272+
$div.css( "margin", "-10px" );
273+
assert.equal( $div.outerHeight(), 74, "Test with padding, border and negative margin without margin option" );
274+
assert.equal( $div.outerHeight( true ), 54, "Test with padding, border and negative margin with margin option" );
275+
271276
// reset styles
272277
$div.css( { "position": "", "display": "", "border": "", "padding": "", "width": "", "height": "" } );
273278

0 commit comments

Comments
 (0)