diff --git a/Userland/Libraries/LibWeb/HTML/HTMLFormElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLFormElement.idl index dfa23db79d..6371af33e8 100644 --- a/Userland/Libraries/LibWeb/HTML/HTMLFormElement.idl +++ b/Userland/Libraries/LibWeb/HTML/HTMLFormElement.idl @@ -9,8 +9,11 @@ interface HTMLFormElement : HTMLElement { [CEReactions, Reflect] attribute DOMString name; [CEReactions, Reflect] attribute DOMString rel; + [CEReactions] attribute DOMString method; [CEReactions, Reflect=accept-charset] attribute DOMString acceptCharset; [CEReactions, Reflect=novalidate] attribute boolean noValidate; + [CEReactions] attribute USVString action; + [CEReactions, Reflect] attribute DOMString target; undefined submit(); [CEReactions] undefined reset();