mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 07:47:37 +00:00
LibWeb: Implement the AudioTrack and AudioTrackList interfaces
These are used to own and manage the playing of audio data.
This commit is contained in:
parent
a34e369252
commit
c89fd6dff0
12 changed files with 455 additions and 0 deletions
9
Userland/Libraries/LibWeb/HTML/AudioTrack.idl
Normal file
9
Userland/Libraries/LibWeb/HTML/AudioTrack.idl
Normal file
|
@ -0,0 +1,9 @@
|
|||
// https://html.spec.whatwg.org/multipage/media.html#audiotrack
|
||||
[Exposed=Window]
|
||||
interface AudioTrack {
|
||||
readonly attribute DOMString id;
|
||||
readonly attribute DOMString kind;
|
||||
readonly attribute DOMString label;
|
||||
readonly attribute DOMString language;
|
||||
attribute boolean enabled;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue