2020-07-27 05:04:26 +01: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;
|
|
|
|
|
2020-09-11 18:17:39 +02:00
|
|
|
attribute boolean checked;
|
2020-11-09 08:15:10 +00: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 04:16:41 +00:00
|
|
|
[Reflect] attribute DOMString align;
|
|
|
|
[Reflect=usemap] attribute DOMString useMap;
|
|
|
|
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|