ladybird/Libraries/LibWeb/HTML/HTMLTextAreaElement.idl
Luke e2e6b03a45 LibWeb: Add support for reflected boolean values
Also throw in some missing reflected DOMString values
2020-11-09 09:51:22 +01:00

13 lines
352 B
Plaintext

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;
}