()
| 810 | }; |
| 811 | |
| 812 | const playWebAnimations = () => { |
| 813 | webAnimations.forEach((animation) => { |
| 814 | animation.play(); |
| 815 | }); |
| 816 | |
| 817 | if (_keyframes.length === 0 || elements.length === 0) { |
| 818 | animationFinish(); |
| 819 | } |
| 820 | }; |
| 821 | |
| 822 | const resetAnimation = () => { |
| 823 | if (supportsWebAnimations) { |
no test coverage detected