Update web-platform-tests to revision 31500c8726aeb1871bc5ca19642f5cb94a0e1a92

This commit is contained in:
WPT Sync Bot 2020-05-22 08:19:02 +00:00
parent 32b240b013
commit e9b62f1a9b
64 changed files with 290 additions and 125 deletions

View file

@ -6,6 +6,7 @@
[Exposed=Window]
interface AnimationTimeline {
readonly attribute double? currentTime;
readonly attribute TimelinePhase phase;
};
dictionary DocumentTimelineOptions {
@ -49,6 +50,8 @@ enum AnimationPlayState { "idle", "running", "paused", "finished" };
enum AnimationReplaceState { "active", "removed", "persisted" };
enum TimelinePhase { "inactive", "before", "active", "after" };
[Exposed=Window]
interface AnimationEffect {
EffectTiming getTiming();