mirror of
https://github.com/jquery/jquery.git
synced 2026-02-01 23:04:59 -05:00
Support: Simplify the box-sizing test
Don't require body in the support.boxSizing test.
This commit is contained in:
@@ -5,7 +5,7 @@ define([
|
||||
|
||||
(function() {
|
||||
// Minified: var b,c,d,e,f,g, h,i
|
||||
var div, style, a, pixelPositionVal, boxSizingVal, boxSizingReliableVal,
|
||||
var div, style, a, pixelPositionVal, boxSizingReliableVal,
|
||||
reliableHiddenOffsetsVal, reliableMarginRightVal;
|
||||
|
||||
// Setup
|
||||
@@ -33,6 +33,11 @@ define([
|
||||
div.cloneNode( true ).style.backgroundClip = "";
|
||||
support.clearCloneStyle = div.style.backgroundClip === "content-box";
|
||||
|
||||
// Support: Firefox<29, Android 2.3
|
||||
// Vendor-prefix box-sizing
|
||||
support.boxSizing = style.boxSizing === "" || style.MozBoxSizing === "" ||
|
||||
style.WebkitBoxSizing === "";
|
||||
|
||||
jQuery.extend(support, {
|
||||
reliableHiddenOffsets: function() {
|
||||
if ( reliableHiddenOffsetsVal == null ) {
|
||||
@@ -41,13 +46,6 @@ define([
|
||||
return reliableHiddenOffsetsVal;
|
||||
},
|
||||
|
||||
boxSizing: function() {
|
||||
if ( boxSizingVal == null ) {
|
||||
computeStyleTests();
|
||||
}
|
||||
return boxSizingVal;
|
||||
},
|
||||
|
||||
boxSizingReliable: function() {
|
||||
if ( boxSizingReliableVal == null ) {
|
||||
computeStyleTests();
|
||||
@@ -94,12 +92,6 @@ define([
|
||||
"box-sizing:border-box;display:block;margin-top:1%;top:1%;" +
|
||||
"border:1px;padding:1px;width:4px;position:absolute";
|
||||
|
||||
// Workaround failing boxSizing test due to offsetWidth returning wrong value
|
||||
// with some non-1 values of body zoom, ticket #13543
|
||||
jQuery.swap( body, body.style.zoom != null ? { zoom: 1 } : {}, function() {
|
||||
boxSizingVal = div.offsetWidth === 4;
|
||||
});
|
||||
|
||||
// Support: IE<9
|
||||
// Assume reasonable values in the absence of getComputedStyle
|
||||
pixelPositionVal = false;
|
||||
|
||||
Reference in New Issue
Block a user