@@ -2,6 +2,7 @@ define( [
2
2
"./core" ,
3
3
"./core/access" ,
4
4
"./var/rcssNum" ,
5
+ "./var/isIE" ,
5
6
"./css/var/rnumnonpx" ,
6
7
"./css/var/cssExpand" ,
7
8
"./css/isAutoPx" ,
@@ -10,14 +11,13 @@ define( [
10
11
"./css/var/swap" ,
11
12
"./css/curCSS" ,
12
13
"./css/adjustCSS" ,
13
- "./css/support" ,
14
14
"./css/finalPropName" ,
15
15
16
16
"./core/init" ,
17
17
"./core/ready" ,
18
18
"./selector" // contains
19
- ] , function ( jQuery , access , rcssNum , rnumnonpx , cssExpand , isAutoPx , cssCamelCase ,
20
- getStyles , swap , curCSS , adjustCSS , support , finalPropName ) {
19
+ ] , function ( jQuery , access , rcssNum , isIE , rnumnonpx , cssExpand , isAutoPx ,
20
+ cssCamelCase , getStyles , swap , curCSS , adjustCSS , finalPropName ) {
21
21
22
22
"use strict" ;
23
23
@@ -121,7 +121,7 @@ function getWidthOrHeight( elem, dimension, extra ) {
121
121
122
122
// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).
123
123
// Fake content-box until we know it's needed to know the true value.
124
- boxSizingNeeded = ! support . boxSizingReliable ( ) || extra ,
124
+ boxSizingNeeded = isIE || extra ,
125
125
isBorderBox = boxSizingNeeded &&
126
126
jQuery . css ( elem , "boxSizing" , false , styles ) === "border-box" ,
127
127
valueIsBorderBox = isBorderBox ,
@@ -140,11 +140,12 @@ function getWidthOrHeight( elem, dimension, extra ) {
140
140
141
141
// Fall back to offsetWidth/offsetHeight when value is "auto"
142
142
// This happens for inline elements with no explicit setting (gh-3571)
143
+ //
143
144
// Support: IE 9 - 11+
144
145
// Also use offsetWidth/offsetHeight for when box sizing is unreliable
145
146
// We use getClientRects() to check for hidden/disconnected.
146
147
// In those cases, the computed value can be trusted to be border-box
147
- if ( ( ! support . boxSizingReliable ( ) && isBorderBox || val === "auto" ) &&
148
+ if ( ( isIE && isBorderBox || val === "auto" ) &&
148
149
elem . getClientRects ( ) . length ) {
149
150
150
151
isBorderBox = jQuery . css ( elem , "boxSizing" , false , styles ) === "border-box" ;
@@ -239,8 +240,9 @@ jQuery.extend( {
239
240
value += ret && ret [ 3 ] || ( isAutoPx ( origName ) ? "px" : "" ) ;
240
241
}
241
242
242
- // background-* props affect original clone's values
243
- if ( ! support . clearCloneStyle && value === "" && name . indexOf ( "background" ) === 0 ) {
243
+ // Support: IE <=9 - 11+
244
+ // background-* props of a cloned element affect the source element (#8908)
245
+ if ( isIE && value === "" && name . indexOf ( "background" ) === 0 ) {
244
246
style [ name ] = "inherit" ;
245
247
}
246
248
0 commit comments