mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
offset: do not add borders for table cells
This commit is contained in:
parent
d5999be9ae
commit
c9899a74ac
@ -43,7 +43,7 @@ jQuery.fn.offset = function() {
|
||||
|
||||
// Mozilla and Safari > 2 does not include the border on offset parents
|
||||
// However Mozilla adds the border for table cells
|
||||
if ( mozilla && /^t[d|h]$/i.test(parent.tagName) || !safari2 )
|
||||
if ( mozilla && !/^t[d|h]$/i.test(offsetParent.tagName) || safari && parseInt(version) >= 522 )
|
||||
border( offsetParent );
|
||||
|
||||
// Safari <= 2 doubles body offsets with an absolutely positioned element or parent
|
||||
|
Loading…
Reference in New Issue
Block a user