mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
14 lines
442 B
Text
14 lines
442 B
Text
|
|
#import <Animations/AnimationTimeline.idl>
|
||
|
|
#import <HighResolutionTime/DOMHighResTimeStamp.idl>
|
||
|
|
|
||
|
|
// https://www.w3.org/TR/web-animations-1/#dictdef-documenttimelineoptions
|
||
|
|
dictionary DocumentTimelineOptions {
|
||
|
|
DOMHighResTimeStamp originTime = 0;
|
||
|
|
};
|
||
|
|
|
||
|
|
// https://www.w3.org/TR/web-animations-1/#documenttimeline
|
||
|
|
[Exposed=Window]
|
||
|
|
interface DocumentTimeline : AnimationTimeline {
|
||
|
|
constructor(optional DocumentTimelineOptions options = {});
|
||
|
|
};
|