1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:17:35 +00:00

LibWeb: Implement Animation.cancel()

This commit is contained in:
Matthew Olsson 2024-02-05 20:37:47 -07:00 committed by Andreas Kling
parent 9abe472928
commit 3c055ff76d
3 changed files with 93 additions and 1 deletions

View file

@ -24,7 +24,7 @@ interface Animation : EventTarget {
// FIXME: attribute EventHandler oncancel;
// FIXME: attribute EventHandler onremove;
// FIXME: undefined cancel();
undefined cancel();
undefined finish();
undefined play();
undefined pause();