mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-18 15:52:21 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
7 lines
342 B
Text
7 lines
342 B
Text
callback FrameRequestCallback = undefined (DOMHighResTimeStamp time);
|
|
|
|
// https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#animationframeprovider
|
|
interface mixin AnimationFrameProvider {
|
|
unsigned long requestAnimationFrame(FrameRequestCallback callback);
|
|
undefined cancelAnimationFrame(unsigned long handle);
|
|
};
|