mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
c89fd6dff0
These are used to own and manage the playing of audio data.
10 lines
297 B
Plaintext
10 lines
297 B
Plaintext
// 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;
|
|
};
|