Update web-platform-tests to revision b'b728032f59a396243864b0f8584e7211e3632005'

This commit is contained in:
WPT Sync Bot 2022-11-10 01:22:36 +00:00
parent ace9b32b1c
commit df68c4e5d1
15632 changed files with 514865 additions and 155000 deletions

View file

@ -3,12 +3,6 @@
// (https://github.com/w3c/webref)
// Source: Web Animations (https://drafts.csswg.org/web-animations-1/)
[Exposed=Window]
interface AnimationTimeline {
readonly attribute double? currentTime;
readonly attribute TimelinePhase phase;
};
dictionary DocumentTimelineOptions {
DOMHighResTimeStamp originTime = 0;
};
@ -41,6 +35,7 @@ interface Animation : EventTarget {
undefined updatePlaybackRate(double playbackRate);
undefined reverse();
undefined persist();
[CEReactions]
undefined commitStyles();
};
@ -48,8 +43,6 @@ enum AnimationPlayState { "idle", "running", "paused", "finished" };
enum AnimationReplaceState { "active", "removed", "persisted" };
enum TimelinePhase { "inactive", "before", "active", "after" };
[Exposed=Window]
interface AnimationEffect {
EffectTiming getTiming();
@ -58,8 +51,6 @@ interface AnimationEffect {
};
dictionary EffectTiming {
double delay = 0;
double endDelay = 0;
FillMode fill = "auto";
double iterationStart = 0.0;
unrestricted double iterations = 1.0;