(delay, isKeyframeAnimation)
| 773 | } |
| 774 | |
| 775 | function getCssDelayStyle(delay, isKeyframeAnimation) { |
| 776 | var prop = isKeyframeAnimation ? ANIMATION_DELAY_PROP : TRANSITION_DELAY_PROP; |
| 777 | return [prop, delay + 's']; |
| 778 | } |
| 779 | |
| 780 | function computeCssStyles($window, element, properties) { |
| 781 | var styles = Object.create(null); |
no outgoing calls
no test coverage detected