1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 02:37:35 +00:00

LibWeb: Add tests for the rest of the Animation properties

This commit is contained in:
Matthew Olsson 2024-03-08 08:47:49 -07:00 committed by Andreas Kling
parent e91f4dcd79
commit dc47210360
10 changed files with 164 additions and 0 deletions

View file

@ -0,0 +1,7 @@
Animation's startTime is initially null: true
Animation's startTime is 100 after setting the value: true
Animation's startTime is non-null after ready promise resolved: true
Animation's startTime is null after calling cancel(): true
Animation's startTime is null after calling pause() and setting currentTime: true
Animation's startTime updates after reversing playbackRate: true
Animation's startTime updates after calling finish(): true