HTMLInputElement.idl 1.3 KB

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