summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/HTML/HTMLInputElement.idl
blob: b62010f7e7087ccbbcda2130c699df38dd9b0268 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;

}