HTMLLabelElement.idl 376 B

12345678910111213
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/forms.html#htmllabelelement
  3. [Exposed=Window]
  4. interface HTMLLabelElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. // FIXME: readonly attribute HTMLFormElement? form;
  7. [CEReactions, Reflect=for] attribute DOMString htmlFor;
  8. // FIXME: readonly attribute HTMLElement? control;
  9. };