mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
1e9cc2e211
Required for rendering GIFs on Discord.
23 lines
491 B
Text
23 lines
491 B
Text
#import <HTML/HTMLElement.idl>
|
|
|
|
enum CanPlayTypeResult {
|
|
"",
|
|
"maybe",
|
|
"probably"
|
|
};
|
|
|
|
// https://html.spec.whatwg.org/multipage/media.html#htmlmediaelement
|
|
[Exposed=Window]
|
|
interface HTMLMediaElement : HTMLElement {
|
|
|
|
[Reflect] attribute DOMString src;
|
|
|
|
[Reflect] attribute boolean autoplay;
|
|
[Reflect] attribute boolean loop;
|
|
|
|
[Reflect] attribute boolean controls;
|
|
|
|
CanPlayTypeResult canPlayType(DOMString type);
|
|
undefined load();
|
|
undefined pause();
|
|
};
|