
This is implemented entirely inside LibWeb, there is no GUI::CheckBox widget instantiated, unlike other input types. All input types should be moved to this new style of implementation.
15 lines
511 B
Text
15 lines
511 B
Text
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;
|
|
}
|