From b816000d47fca157f84af4063f0962554a87581b Mon Sep 17 00:00:00 2001 From: Luke Date: Tue, 4 May 2021 21:52:32 +0100 Subject: [PATCH] LibWeb: Expose HTMLInputElement.name --- Userland/Libraries/LibWeb/HTML/HTMLInputElement.idl | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibWeb/HTML/HTMLInputElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLInputElement.idl index 361de54d65..d9a982e2b6 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLInputElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLInputElement.idl @@ -10,6 +10,7 @@ interface HTMLInputElement : HTMLElement { [Reflect] attribute DOMString placeholder; [Reflect] attribute DOMString src; [Reflect] attribute DOMString step; + [Reflect] attribute DOMString name; [Reflect=dirname] attribute DOMString dirName; [Reflect=value] attribute DOMString defaultValue;