ladybird/Userland/Libraries/LibWeb/HTML/HTMLTextAreaElement.idl
2021-01-12 12:17:46 +01:00

12 lines
353 B
Text

interface HTMLTextAreaElement : HTMLElement {
[Reflect] attribute DOMString placeholder;
[Reflect] attribute DOMString name;
[Reflect] attribute DOMString wrap;
readonly attribute DOMString type;
[Reflect] attribute boolean disabled;
[Reflect=readonly] attribute boolean readOnly;
[Reflect] attribute boolean required;
};