HTMLInputElement.idl 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. #import <HTML/HTMLElement.idl>
  2. #import <HTML/HTMLFormElement.idl>
  3. interface HTMLInputElement : HTMLElement {
  4. readonly attribute HTMLFormElement? form;
  5. [Reflect] attribute DOMString accept;
  6. [Reflect] attribute DOMString alt;
  7. [Reflect] attribute DOMString max;
  8. [Reflect] attribute DOMString min;
  9. [Reflect] attribute DOMString pattern;
  10. [Reflect] attribute DOMString placeholder;
  11. [Reflect] attribute DOMString src;
  12. [Reflect] attribute DOMString step;
  13. [Reflect] attribute DOMString name;
  14. [Reflect=dirname] attribute DOMString dirName;
  15. [Reflect=value] attribute DOMString defaultValue;
  16. [LegacyNullToEmptyString] attribute DOMString value;
  17. attribute boolean checked;
  18. [Reflect] attribute boolean disabled;
  19. [Reflect=checked] attribute boolean defaultChecked;
  20. [Reflect=formnovalidate] attribute boolean formNoValidate;
  21. [Reflect=formtarget] attribute DOMString formTarget;
  22. [Reflect] attribute boolean multiple;
  23. [Reflect=readonly] attribute boolean readOnly;
  24. [Reflect] attribute boolean required;
  25. [Reflect] attribute DOMString align;
  26. [Reflect=usemap] attribute DOMString useMap;
  27. };