1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:38:10 +00:00

LibWeb: Implement the HTMLMediaElement fastSeek method

This commit is contained in:
Timothy Flynn 2023-04-23 16:17:01 -04:00 committed by Andreas Kling
parent c987c934d0
commit 32e2207b55
3 changed files with 9 additions and 0 deletions

View file

@ -40,6 +40,7 @@ interface HTMLMediaElement : HTMLElement {
// playback state
attribute double currentTime;
undefined fastSeek(double time);
readonly attribute unrestricted double duration;
readonly attribute boolean paused;
readonly attribute boolean ended;