ladybird/Userland/Libraries/LibWeb/Internals/InternalAnimationTimeline.idl
Matthew Olsson a1f4d1875e LibWeb: Add an InternalAnimationTimeline object
This will allow fine grained control over animation times, which will
allow us to write timing tests that can reliably pass on the much slower
CI machines.
2024-03-28 21:08:32 +01:00

7 lines
159 B
Plaintext

#import <Animations/AnimationTimeline.idl>
[Exposed=Nobody]
interface InternalAnimationTimeline : AnimationTimeline {
undefined setTime(double? time);
};