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/form-elements.html#htmltextareaelement
|
2023-09-03 01:09:33 +12:00
|
|
|
[Exposed=Window]
|
2020-08-01 03:07:00 +01:00
|
|
|
interface HTMLTextAreaElement : HTMLElement {
|
2023-03-23 03:48:52 -04:00
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
|
2023-10-04 17:55:33 +02:00
|
|
|
[CEReactions, Reflect] attribute DOMString autocomplete;
|
|
|
|
// FIXME: [CEReactions] attribute unsigned long cols;
|
|
|
|
[CEReactions, Reflect=dirname] attribute DOMString dirName;
|
|
|
|
[CEReactions, Reflect] attribute boolean disabled;
|
|
|
|
readonly attribute HTMLFormElement? form;
|
|
|
|
// FIXME: [CEReactions] attribute long maxLength;
|
|
|
|
// FIXME: [CEReactions] attribute long minLength;
|
2023-03-01 01:45:18 +00:00
|
|
|
[CEReactions, Reflect] attribute DOMString name;
|
2023-10-04 17:55:33 +02:00
|
|
|
[CEReactions, Reflect] attribute DOMString placeholder;
|
|
|
|
[CEReactions, Reflect=readonly] attribute boolean readOnly;
|
|
|
|
[CEReactions, Reflect] attribute boolean required;
|
|
|
|
// FIXME: [CEReactions] attribute unsigned long rows;
|
2023-03-01 01:45:18 +00:00
|
|
|
[CEReactions, Reflect] attribute DOMString wrap;
|
2023-10-04 17:55:33 +02:00
|
|
|
|
2020-08-01 03:07:00 +01:00
|
|
|
readonly attribute DOMString type;
|
2023-10-04 17:55:33 +02:00
|
|
|
// FIXME: [CEReactions] attribute DOMString defaultValue;
|
|
|
|
// FIXME: attribute [LegacyNullToEmptyString] DOMString value;
|
|
|
|
// FIXME: readonly attribute unsigned long textLength;
|
2020-08-01 03:07:00 +01:00
|
|
|
|
2023-10-04 17:55:33 +02:00
|
|
|
// FIXME: readonly attribute boolean willValidate;
|
|
|
|
// FIXME: readonly attribute ValidityState validity;
|
|
|
|
// FIXME: readonly attribute DOMString validationMessage;
|
|
|
|
// FIXME: boolean checkValidity();
|
|
|
|
// FIXME: boolean reportValidity();
|
|
|
|
// FIXME: undefined setCustomValidity(DOMString error);
|
|
|
|
|
|
|
|
// FIXME: readonly attribute NodeList labels;
|
2020-11-09 08:15:10 +00:00
|
|
|
|
2023-10-04 17:55:33 +02:00
|
|
|
// FIXME: undefined select();
|
|
|
|
// FIXME: attribute unsigned long selectionStart;
|
|
|
|
// FIXME: attribute unsigned long selectionEnd;
|
|
|
|
// FIXME: attribute DOMString selectionDirection;
|
|
|
|
// FIXME: undefined setRangeText(DOMString replacement);
|
|
|
|
// FIXME: undefined setRangeText(DOMString replacement, unsigned long start, unsigned long end, optional SelectionMode selectionMode = "preserve");
|
|
|
|
// FIXME: undefined setSelectionRange(unsigned long start, unsigned long end, optional DOMString direction);
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|