1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:48:11 +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

@ -66,6 +66,7 @@ public:
double current_time() const;
void set_current_time(double);
void fast_seek(double);
double current_playback_position() const { return m_current_playback_position; }
void set_current_playback_position(double);