2022-10-07 19:45:09 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/form-elements.html#htmloutputelement
|
|
|
|
|
[Exposed=Window]
|
2020-07-31 23:05:43 -03:00
|
|
|
interface HTMLOutputElement : HTMLElement {
|
2023-03-23 04:48:52 -03:00
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
|
|
2024-05-16 14:54:42 -03:00
|
|
|
[SameObject, PutForwards=value] readonly attribute DOMTokenList htmlFor;
|
2023-10-04 12:55:33 -03:00
|
|
|
readonly attribute HTMLFormElement? form;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString name;
|
|
|
|
|
|
2020-07-31 23:05:43 -03:00
|
|
|
readonly attribute DOMString type;
|
2025-07-28 10:46:06 -03:00
|
|
|
[CEReactions] attribute Utf16DOMString defaultValue;
|
2025-07-26 13:19:56 -03:00
|
|
|
[CEReactions] attribute Utf16DOMString value;
|
2023-10-04 12:55:33 -03:00
|
|
|
|
2025-02-25 05:43:11 -03:00
|
|
|
readonly attribute boolean willValidate;
|
2025-02-17 16:44:26 -03:00
|
|
|
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-07-31 23:05:43 -03:00
|
|
|
|
2024-05-18 10:10:00 -03:00
|
|
|
readonly attribute NodeList labels;
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|