(node, location)
| 56 | } |
| 57 | |
| 58 | function getBorder(node, location) { |
| 59 | return getPositiveSpacing(node, 'border', 'Width', location); |
| 60 | } |
| 61 | |
| 62 | function getPaddingAndBorder(node, location) { |
| 63 | return getPadding(node, location) + getBorder(node, location); |
no test coverage detected
searching dependent graphs…