HTMLTextAreaElement.idl 385 B

1234567891011121314
  1. #import <HTML/HTMLElement.idl>
  2. interface HTMLTextAreaElement : HTMLElement {
  3. [Reflect] attribute DOMString placeholder;
  4. [Reflect] attribute DOMString name;
  5. [Reflect] attribute DOMString wrap;
  6. readonly attribute DOMString type;
  7. [Reflect] attribute boolean disabled;
  8. [Reflect=readonly] attribute boolean readOnly;
  9. [Reflect] attribute boolean required;
  10. };