ladybird/Userland/Libraries/LibWeb/HTML/HTMLLegendElement.idl
2023-10-24 07:27:14 +02:00

12 lines
340 B
Text

#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/form-elements.html#htmllegendelement
[Exposed=Window]
interface HTMLLegendElement : HTMLElement {
[HTMLConstructor] constructor();
// FIXME: readonly attribute HTMLFormElement? form;
// Obsolete
[CEReactions, Reflect] attribute DOMString align;
};