1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:57:44 +00:00

LibWeb: Implement Animation.reverse()

This commit is contained in:
Matthew Olsson 2024-02-10 16:00:08 -07:00 committed by Andreas Kling
parent 9ab73f2675
commit 2dd5d0c310
3 changed files with 31 additions and 1 deletions

View file

@ -29,7 +29,7 @@ interface Animation : EventTarget {
undefined play();
undefined pause();
undefined updatePlaybackRate(double playbackRate);
// FIXME: undefined reverse();
undefined reverse();
undefined persist();
// FIXME: [CEReactions] undefined commitStyles();
};