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

LibWeb: Implement Animation.persist()

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

View file

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