diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLMediaElement.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLMediaElement.idl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLMediaElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLMediaElement.idl new file mode 100644 index 0000000000..dda7615580 --- /dev/null +++ b/Userland/Libraries/LibWeb/HTML/HTMLMediaElement.idl @@ -0,0 +1,10 @@ +interface HTMLMediaElement : HTMLElement { + + [Reflect] attribute DOMString src; + + [Reflect] attribute boolean autoplay; + [Reflect] attribute boolean loop; + + [Reflect] attribute boolean controls; + +}; |