HTMLLegendElement.idl 330 B

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