( prop )
| 4116 | rautoPx = /^(?:Border(?:Top|Right|Bottom|Left)?(?:Width|)|(?:Margin|Padding)?(?:Top|Right|Bottom|Left)?|(?:Min|Max)?(?:Width|Height))$/; |
| 4117 | |
| 4118 | function isAutoPx( prop ) { |
| 4119 | |
| 4120 | // The first test is used to ensure that: |
| 4121 | // 1. The prop starts with a lowercase letter (as we uppercase it for the second regex). |
| 4122 | // 2. The prop is not empty. |
| 4123 | return ralphaStart.test( prop ) && |
| 4124 | rautoPx.test( prop[ 0 ].toUpperCase() + prop.slice( 1 ) ); |
| 4125 | } |
| 4126 | |
| 4127 | function adjustCSS( elem, prop, valueParts, tween ) { |
| 4128 | var adjusted, scale, |
no outgoing calls
no test coverage detected