Serenity Operating System
1#import <HTML/HTMLElement.idl>
2
3// https://html.spec.whatwg.org/multipage/form-elements.html#htmltextareaelement
4[Exposed=Window]
5interface HTMLTextAreaElement : HTMLElement {
6
7 [Reflect] attribute DOMString placeholder;
8 [Reflect] attribute DOMString name;
9 [Reflect] attribute DOMString wrap;
10 readonly attribute DOMString type;
11
12 [Reflect] attribute boolean disabled;
13 [Reflect=readonly] attribute boolean readOnly;
14 [Reflect] attribute boolean required;
15
16};