HTMLInputElement.idl 1.0 KB

12345678910111213141516171819202122232425262728293031
  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=dirname] attribute DOMString dirName;
  12. [Reflect=value] attribute DOMString defaultValue;
  13. [LegacyNullToEmptyString] attribute DOMString value;
  14. attribute boolean checked;
  15. [Reflect] attribute boolean disabled;
  16. [Reflect=checked] attribute boolean defaultChecked;
  17. [Reflect=formnovalidate] attribute boolean formNoValidate;
  18. [Reflect=formtarget] attribute DOMString formTarget;
  19. [Reflect] attribute boolean multiple;
  20. [Reflect=readonly] attribute boolean readOnly;
  21. [Reflect] attribute boolean required;
  22. [Reflect] attribute DOMString align;
  23. [Reflect=usemap] attribute DOMString useMap;
  24. };