Update web-platform-tests to revision d7a573df46aac1ebc338ff993c54a18f2b9ff1a4

This commit is contained in:
WPT Sync Bot 2020-04-06 08:18:42 +00:00
parent 3df65c02fe
commit 4e37dd1013
32 changed files with 191 additions and 53 deletions

View file

@ -13,19 +13,19 @@ enum ScrollDirection {
enum ScrollTimelineAutoKeyword { "auto" };
dictionary ScrollTimelineOptions {
Element? scrollSource = null;
Element? source = null;
ScrollDirection orientation = "block";
DOMString startScrollOffset = "auto";
DOMString endScrollOffset = "auto";
DOMString start = "auto";
DOMString end = "auto";
(double or ScrollTimelineAutoKeyword) timeRange = "auto";
};
[Exposed=Window]
interface ScrollTimeline : AnimationTimeline {
constructor(optional ScrollTimelineOptions options = {});
readonly attribute Element scrollSource;
readonly attribute Element source;
readonly attribute ScrollDirection orientation;
readonly attribute DOMString startScrollOffset;
readonly attribute DOMString endScrollOffset;
readonly attribute DOMString start;
readonly attribute DOMString end;
readonly attribute (double or ScrollTimelineAutoKeyword) timeRange;
};