2022-02-15 22:10:51 +03:00
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
#import <HTML/HTMLFormElement.idl>
|
|
|
|
|
2020-07-27 07:04:26 +03:00
|
|
|
interface HTMLInputElement : HTMLElement {
|
|
|
|
|
2021-04-20 12:50:29 +03:00
|
|
|
readonly attribute HTMLFormElement? form;
|
|
|
|
|
2020-07-27 07:04:26 +03:00
|
|
|
[Reflect] attribute DOMString accept;
|
|
|
|
[Reflect] attribute DOMString alt;
|
|
|
|
[Reflect] attribute DOMString max;
|
|
|
|
[Reflect] attribute DOMString min;
|
|
|
|
[Reflect] attribute DOMString pattern;
|
|
|
|
[Reflect] attribute DOMString placeholder;
|
|
|
|
[Reflect] attribute DOMString src;
|
|
|
|
[Reflect] attribute DOMString step;
|
2021-05-04 23:52:32 +03:00
|
|
|
[Reflect] attribute DOMString name;
|
2020-07-27 07:04:26 +03:00
|
|
|
[Reflect=dirname] attribute DOMString dirName;
|
|
|
|
[Reflect=value] attribute DOMString defaultValue;
|
|
|
|
|
2022-02-17 15:12:01 +03:00
|
|
|
attribute DOMString type;
|
|
|
|
|
2021-02-10 20:26:07 +03:00
|
|
|
[LegacyNullToEmptyString] attribute DOMString value;
|
|
|
|
|
2020-09-11 19:17:39 +03:00
|
|
|
attribute boolean checked;
|
2020-11-09 11:15:10 +03:00
|
|
|
|
|
|
|
[Reflect] attribute boolean disabled;
|
|
|
|
[Reflect=checked] attribute boolean defaultChecked;
|
|
|
|
[Reflect=formnovalidate] attribute boolean formNoValidate;
|
|
|
|
[Reflect=formtarget] attribute DOMString formTarget;
|
|
|
|
[Reflect] attribute boolean multiple;
|
|
|
|
[Reflect=readonly] attribute boolean readOnly;
|
|
|
|
[Reflect] attribute boolean required;
|
|
|
|
|
2020-11-12 07:16:41 +03:00
|
|
|
[Reflect] attribute DOMString align;
|
|
|
|
[Reflect=usemap] attribute DOMString useMap;
|
|
|
|
|
2020-12-10 00:26:42 +03:00
|
|
|
};
|