summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLTextAreaElement.idl
blob: 2490d10aef25b8178911abfcec8f20ed15fbb50a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import <HTML/HTMLElement.idl>

// https://html.spec.whatwg.org/multipage/form-elements.html#htmltextareaelement
[Exposed=Window]
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;

};