LibWeb: Implement the :seeking pseudo-class

This matches while a media element is seeking.
This commit is contained in:
Sam Atkins 2023-08-01 13:04:47 +01:00 committed by Tim Flynn
commit 7b4ae43b91
Notes: sideshowbarker 2024-07-17 07:43:44 +09:00
7 changed files with 28 additions and 3 deletions

View file

@ -70,6 +70,7 @@ public:
ReadyState ready_state() const { return m_ready_state; }
bool seeking() const { return m_seeking; }
void set_seeking(bool);
WebIDL::ExceptionOr<void> load();