mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-01 03:47:48 +02:00
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;
|
|
};
|