diff options
Diffstat (limited to 'Libraries/LibWeb/HTML/HTMLInputElement.idl')
-rw-r--r-- | Libraries/LibWeb/HTML/HTMLInputElement.idl | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Libraries/LibWeb/HTML/HTMLInputElement.idl b/Libraries/LibWeb/HTML/HTMLInputElement.idl deleted file mode 100644 index 037b65c280..0000000000 --- a/Libraries/LibWeb/HTML/HTMLInputElement.idl +++ /dev/null @@ -1,27 +0,0 @@ -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; - - [Reflect] attribute DOMString align; - [Reflect=usemap] attribute DOMString useMap; - -}; |