(node, axis)
| 68 | } |
| 69 | |
| 70 | function getPaddingAndBorderAxis(node, axis) { |
| 71 | return getPaddingAndBorder(node, leading[axis]) + getPaddingAndBorder(node, trailing[axis]); |
| 72 | } |
| 73 | |
| 74 | function getJustifyContent(node) { |
| 75 | if ('justifyContent' in node.style) { |
no test coverage detected
searching dependent graphs…