mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
25 lines
866 B
Plaintext
25 lines
866 B
Plaintext
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;
|
|
|
|
attribute boolean checked;
|
|
|
|
[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;
|
|
|
|
}
|