mirror of
https://github.com/servo/servo.git
synced 2025-09-12 07:58:20 +01:00
Update web-platform-tests to revision 70fdd27f4cecb8a5cae3dafa76ba05265531c9e2
This commit is contained in:
parent
e5689df6b4
commit
bea56037ef
701 changed files with 13864 additions and 1909 deletions
|
@ -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 = {});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue