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