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
commit b9e4dc2cb7
Notes: sideshowbarker 2024-07-19 01:59:31 +09:00
7 changed files with 101 additions and 0 deletions

View file

@ -52,6 +52,9 @@ interface HTMLMediaElement : HTMLElement {
// controls
[Reflect, CEReactions] attribute boolean controls;
attribute double volume;
attribute boolean muted;
[Reflect=muted, CEReactions] attribute boolean defaultMuted;
// tracks
[SameObject] readonly attribute AudioTrackList audioTracks;