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
|
|
|
|
2025-02-25 05:43:11 -03:00
|
|
|
readonly attribute boolean willValidate;
|
2025-08-29 13:37:51 -03:00
|
|
|
[SameObject] readonly attribute ValidityState validity;
|
2025-08-29 13:02:59 -03:00
|
|
|
readonly attribute Utf16DOMString validationMessage;
|
2025-08-29 12:56:20 -03:00
|
|
|
boolean checkValidity();
|
2025-08-29 12:52:55 -03:00
|
|
|
boolean reportValidity();
|
2025-02-17 16:50:56 -03:00
|
|
|
undefined setCustomValidity(DOMString error);
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|