Update web-platform-tests to revision 70fdd27f4cecb8a5cae3dafa76ba05265531c9e2

This commit is contained in:
WPT Sync Bot 2019-11-10 10:27:24 +00:00
parent e5689df6b4
commit bea56037ef
701 changed files with 13864 additions and 1909 deletions

View file

@ -92,11 +92,12 @@ dictionary ComputedEffectTiming : EffectTiming {
[Exposed=Window]
interface KeyframeEffect : AnimationEffect {
constructor((Element or CSSPseudoElement)? target,
constructor(Element? target,
object? keyframes,
optional (unrestricted double or KeyframeEffectOptions) options = {});
constructor(KeyframeEffect source);
attribute (Element or CSSPseudoElement)? target;
attribute Element? target;
attribute CSSOMString? pseudoElement;
attribute CompositeOperation composite;
sequence<object> getKeyframes();
void setKeyframes(object? keyframes);
@ -122,7 +123,8 @@ dictionary BaseKeyframe {
};
dictionary KeyframeEffectOptions : EffectTiming {
CompositeOperation composite = "replace";
CompositeOperation composite = "replace";
CSSOMString? pseudoElement = null;
};
enum CompositeOperation { "replace", "add", "accumulate" };
@ -153,8 +155,6 @@ partial interface mixin DocumentOrShadowRoot {
Element includes Animatable;
CSSPseudoElement includes Animatable;
[Exposed=Window]
interface AnimationPlaybackEvent : Event {
constructor(DOMString type, optional AnimationPlaybackEventInit eventInitDict = {});