HTMLInputElement.idl 1.1 KB

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