@@ -3960,7 +3960,7 @@ dictionary DocumentTimelineOptions {
39603960};
39613961
39623962[Exposed=Window,
3963- Constructor(optional DocumentTimelineOptions options)]
3963+ Constructor(optional DocumentTimelineOptions options = {} )]
39643964interface DocumentTimeline : AnimationTimeline {
39653965};
39663966</pre>
@@ -4322,7 +4322,7 @@ abstract {{AnimationEffect}} interface.
43224322interface AnimationEffect {
43234323 EffectTiming getTiming();
43244324 ComputedEffectTiming getComputedTiming();
4325- void updateTiming(optional OptionalEffectTiming timing);
4325+ void updateTiming(optional OptionalEffectTiming timing = {} );
43264326};
43274327</pre>
43284328
@@ -4697,7 +4697,7 @@ dictionary ComputedEffectTiming : EffectTiming {
46974697[Exposed=Window,
46984698 Constructor((Element or CSSPseudoElement)? target,
46994699 object? keyframes,
4700- optional (unrestricted double or KeyframeEffectOptions) options),
4700+ optional (unrestricted double or KeyframeEffectOptions) options = {} ),
47014701 Constructor(KeyframeEffect source)]
47024702interface KeyframeEffect : AnimationEffect {
47034703 attribute (Element or CSSPseudoElement)? target;
@@ -5717,8 +5717,8 @@ the {{Animatable}} interface mixin.
57175717<pre class='idl'>
57185718interface mixin Animatable {
57195719 Animation animate(object? keyframes,
5720- optional (unrestricted double or KeyframeAnimationOptions) options);
5721- sequence<Animation> getAnimations(optional GetAnimationsOptions options);
5720+ optional (unrestricted double or KeyframeAnimationOptions) options = {} );
5721+ sequence<Animation> getAnimations(optional GetAnimationsOptions options = {} );
57225722};
57235723
57245724dictionary KeyframeAnimationOptions : KeyframeEffectOptions {
@@ -5932,7 +5932,7 @@ CSSPseudoElement includes Animatable;
59325932
59335933<pre class='idl'>
59345934[Exposed=Window,
5935- Constructor(DOMString type, optional AnimationPlaybackEventInit eventInitDict)]
5935+ Constructor(DOMString type, optional AnimationPlaybackEventInit eventInitDict = {} )]
59365936interface AnimationPlaybackEvent : Event {
59375937 readonly attribute double? currentTime;
59385938 readonly attribute double? timelineTime;
0 commit comments