2020-07-27 01:04:26 -03:00
|
|
|
interface HTMLInputElement : HTMLElement {
|
|
|
|
|
|
|
|
|
|
[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;
|
|
|
|
|
[Reflect=dirname] attribute DOMString dirName;
|
|
|
|
|
[Reflect=value] attribute DOMString defaultValue;
|
|
|
|
|
|
2021-02-10 14:26:07 -03:00
|
|
|
[LegacyNullToEmptyString] attribute DOMString value;
|
|
|
|
|
|
2020-09-11 13:17:39 -03:00
|
|
|
attribute boolean checked;
|
2020-11-09 05: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 01:16:41 -03:00
|
|
|
[Reflect] attribute DOMString align;
|
|
|
|
|
[Reflect=usemap] attribute DOMString useMap;
|
|
|
|
|
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|