mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
26e6c47d0a
The only IDL interface without a spec link is Internals
7 lines
245 B
Text
7 lines
245 B
Text
#import <HTML/HTMLMediaElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/#htmlaudioelement
|
|
[Exposed=Window, LegacyFactoryFunction=Audio(optional DOMString src)]
|
|
interface HTMLAudioElement : HTMLMediaElement {
|
|
[HTMLConstructor] constructor();
|
|
};
|