HTMLFieldSetElement.idl 831 B

1234567891011121314151617181920212223
  1. #import <HTML/HTMLElement.idl>
  2. #import <HTML/HTMLFormElement.idl>
  3. // https://html.spec.whatwg.org/multipage/semantics.html#htmlfieldsetelement
  4. [Exposed=Window]
  5. interface HTMLFieldSetElement : HTMLElement {
  6. [HTMLConstructor] constructor();
  7. [CEReactions, Reflect] attribute boolean disabled;
  8. readonly attribute HTMLFormElement? form;
  9. [CEReactions, Reflect] attribute DOMString name;
  10. readonly attribute DOMString type;
  11. [SameObject] readonly attribute HTMLCollection elements;
  12. // FIXME: readonly attribute boolean willValidate;
  13. // FIXME: [SameObject] readonly attribute ValidityState validity;
  14. // FIXME: readonly attribute DOMString validationMessage;
  15. // FIXME: boolean checkValidity();
  16. // FIXME: boolean reportValidity();
  17. // FIXME: undefined setCustomValidity(DOMString error);
  18. };