From c5e05473776a6a9332b3bd0e81174ae161637b2c Mon Sep 17 00:00:00 2001 From: Luke Wilde Date: Sun, 18 Jun 2023 16:30:43 +0100 Subject: [PATCH] LibWeb: Add HTMLFormElement#{method,action,target} --- Userland/Libraries/LibWeb/HTML/HTMLFormElement.idl | 3 +++ 1 file changed, 3 insertions(+) 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();