HTMLTextAreaElement.idl 483 B

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