blob: 878cc67db0c79e2dee00f3d31c92ec785c6a929b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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;
};
|