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

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;

};