Update web-platform-tests to revision f1e1bd6bfa544af8059ff8ef79d622281f9ec0a8

This commit is contained in:
WPT Sync Bot 2019-10-01 10:52:57 +00:00
parent 1b6715158d
commit 38ab56be1a
64 changed files with 5155 additions and 165 deletions

View file

@ -12,15 +12,15 @@ dictionary DocumentTimelineOptions {
DOMHighResTimeStamp originTime = 0;
};
[Exposed=Window,
Constructor(optional DocumentTimelineOptions options = {})]
[Exposed=Window]
interface DocumentTimeline : AnimationTimeline {
constructor(optional DocumentTimelineOptions options = {});
};
[Exposed=Window,
Constructor(optional AnimationEffect? effect = null,
optional AnimationTimeline? timeline)]
[Exposed=Window]
interface Animation : EventTarget {
constructor(optional AnimationEffect? effect = null,
optional AnimationTimeline? timeline);
attribute DOMString id;
attribute AnimationEffect? effect;
readonly attribute AnimationTimeline? timeline;
@ -90,12 +90,12 @@ dictionary ComputedEffectTiming : EffectTiming {
unrestricted double? currentIteration;
};
[Exposed=Window,
Constructor((Element or CSSPseudoElement)? target,
object? keyframes,
optional (unrestricted double or KeyframeEffectOptions) options = {}),
Constructor(KeyframeEffect source)]
[Exposed=Window]
interface KeyframeEffect : AnimationEffect {
constructor((Element or CSSPseudoElement)? target,
object? keyframes,
optional (unrestricted double or KeyframeEffectOptions) options = {});
constructor(KeyframeEffect source);
attribute (Element or CSSPseudoElement)? target;
attribute CompositeOperation composite;
sequence<object> getKeyframes();
@ -155,9 +155,9 @@ Element includes Animatable;
CSSPseudoElement includes Animatable;
[Exposed=Window,
Constructor(DOMString type, optional AnimationPlaybackEventInit eventInitDict = {})]
[Exposed=Window]
interface AnimationPlaybackEvent : Event {
constructor(DOMString type, optional AnimationPlaybackEventInit eventInitDict = {});
readonly attribute double? currentTime;
readonly attribute double? timelineTime;
};