(delay, isKeyframeAnimation)
| 754 | } |
| 755 | |
| 756 | function getCssDelayStyle(delay, isKeyframeAnimation) { |
| 757 | var prop = isKeyframeAnimation ? ANIMATION_DELAY_PROP : TRANSITION_DELAY_PROP; |
| 758 | return [prop, delay + 's']; |
| 759 | } |
| 760 | |
| 761 | function computeCssStyles($window, element, properties) { |
| 762 | var styles = Object.create(null); |
no outgoing calls
no test coverage detected