ericwilligers / svg-animation

Implement SVG animation in JavaScript using Web Animations
Apache License 2.0
120 stars 20 forks source link

Exercise the restart attribute #12

Closed ewilligers closed 10 years ago

ewilligers commented 10 years ago

Adds a tests that uses the various values for the 'restart' attribute.

restart=always allows an animation to restart at any time. restart=whenNotActive prevents the animation from restarting if it is already active. restart=never prevents the animation from ever starting again.

alancutter commented 10 years ago

lgtm

The timing is way out in Web Animations, should add a FIXME for that.