ladybird/Userland/Libraries/LibWeb/HTML/HTMLSourceElement.idl
2023-03-23 13:37:40 +01:00

15 lines
421 B
Text

#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/embedded-content.html#htmlsourceelement
[Exposed=Window]
interface HTMLSourceElement : HTMLElement {
[HTMLConstructor] constructor();
[Reflect] attribute DOMString src;
[Reflect] attribute DOMString type;
[Reflect] attribute DOMString srcset;
[Reflect] attribute DOMString sizes;
[Reflect] attribute DOMString media;
};