( elem, value, subtract )
| 7645 | } |
| 7646 | |
| 7647 | function setPositiveNumber( elem, value, subtract ) { |
| 7648 | var matches = rnumsplit.exec( value ); |
| 7649 | return matches ? |
| 7650 | Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : |
| 7651 | value; |
| 7652 | } |
| 7653 | |
| 7654 | function augmentWidthOrHeight( elem, name, extra, isBorderBox ) { |
| 7655 | var i = extra === ( isBorderBox ? "border" : "content" ) ? |
no outgoing calls
no test coverage detected
searching dependent graphs…