diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLInputElement.idl')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/HTMLInputElement.idl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLInputElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLInputElement.idl index b8ed3705df..e4f1b9083c 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLInputElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLInputElement.idl @@ -17,6 +17,8 @@ interface HTMLInputElement : HTMLElement { [Reflect=dirname] attribute DOMString dirName; [Reflect=value] attribute DOMString defaultValue; + attribute DOMString type; + [LegacyNullToEmptyString] attribute DOMString value; attribute boolean checked; |