mirror of
https://github.com/servo/servo.git
synced 2025-08-15 18:35:33 +01:00
Update web-platform-tests to revision d7a573df46aac1ebc338ff993c54a18f2b9ff1a4
This commit is contained in:
parent
3df65c02fe
commit
4e37dd1013
32 changed files with 191 additions and 53 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue