2022-02-15 16:10:51 -03:00
|
|
|
#import <HTML/HTMLElement.idl>
|
2023-10-04 12:55:33 -03:00
|
|
|
#import <HTML/HTMLFormElement.idl>
|
2022-02-15 16:10:51 -03:00
|
|
|
|
2022-10-07 19:45:09 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/semantics.html#htmlfieldsetelement
|
|
|
|
|
[Exposed=Window]
|
2020-07-31 23:04:26 -03:00
|
|
|
interface HTMLFieldSetElement : HTMLElement {
|
2023-03-23 04:48:52 -03:00
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
|
|
2023-10-04 12:55:33 -03:00
|
|
|
[CEReactions, Reflect] attribute boolean disabled;
|
|
|
|
|
readonly attribute HTMLFormElement? form;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString name;
|
|
|
|
|
|
2020-07-31 23:04:26 -03:00
|
|
|
readonly attribute DOMString type;
|
|
|
|
|
|
2023-12-10 06:42:41 -03:00
|
|
|
[SameObject] readonly attribute HTMLCollection elements;
|
2023-10-04 12:55:33 -03:00
|
|
|
|
2024-05-19 07:15:54 -03:00
|
|
|
[FIXME] readonly attribute boolean willValidate;
|
|
|
|
|
[FIXME, SameObject] readonly attribute ValidityState validity;
|
|
|
|
|
[FIXME] readonly attribute DOMString validationMessage;
|
|
|
|
|
[FIXME] boolean checkValidity();
|
|
|
|
|
[FIXME] boolean reportValidity();
|
2025-02-17 16:50:56 -03:00
|
|
|
undefined setCustomValidity(DOMString error);
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|