1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 23:58:11 +00:00

LibWeb: Implement the HTMLMediaElement volume and muted IDL attributes

This commit is contained in:
Timothy Flynn 2023-06-14 13:07:09 -04:00 committed by Andreas Kling
parent d3b8d88598
commit b9e4dc2cb7
7 changed files with 101 additions and 0 deletions

View file

@ -28,6 +28,8 @@ public:
Duration duration() const;
void seek(double, MediaSeekMode);
void update_volume();
String const& id() const { return m_id; }
String const& kind() const { return m_kind; }
String const& label() const { return m_label; }