You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Error: Animation with null timeline is not supported" is incorrectly thrown when creating a new Animation using web-animations-next.min.js version 2.3.2 on Safari 14.0.2.
leteffect=newKeyframeEffect(box,{opacity: 0},300);letanimation=newAnimation(effect);// -> Error: Animation with null timeline is not supported
An optional value which, if present, specifies the timeline with which to associate the newly-created animation. If missing, the default document timeline of the Document associated with the Window that is the current global object is used.
The text was updated successfully, but these errors were encountered:
"Error: Animation with null timeline is not supported" is incorrectly thrown when creating a new
Animation
usingweb-animations-next.min.js
version 2.3.2 on Safari 14.0.2.As per the spec,
timeline
is:The text was updated successfully, but these errors were encountered: