mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-31 04:45:32 +00:00
9 lines
338 B
Plaintext
9 lines
338 B
Plaintext
#import <HighResolutionTime/DOMHighResTimeStamp.idl>
|
|
|
|
callback FrameRequestCallback = undefined (DOMHighResTimeStamp time);
|
|
|
|
// https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#animationframeprovider
|
|
interface mixin AnimationFrameProvider {
|
|
unsigned long requestAnimationFrame(FrameRequestCallback callback);
|
|
};
|