HTMLTextAreaElement.idl 599 B

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