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