mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
21 lines
709 B
Plaintext
21 lines
709 B
Plaintext
// https://html.spec.whatwg.org/multipage/semantics.html#htmlfieldsetelement
|
|
[Exposed=Window]
|
|
interface HTMLFieldSetElement : HTMLElement {
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions, Reflect] attribute boolean disabled;
|
|
readonly attribute HTMLFormElement? form;
|
|
[CEReactions, Reflect] attribute DOMString name;
|
|
|
|
readonly attribute DOMString type;
|
|
|
|
[SameObject] readonly attribute HTMLCollection elements;
|
|
|
|
readonly attribute boolean willValidate;
|
|
[SameObject] readonly attribute ValidityState validity;
|
|
readonly attribute Utf16DOMString validationMessage;
|
|
boolean checkValidity();
|
|
boolean reportValidity();
|
|
undefined setCustomValidity(DOMString error);
|
|
};
|