LibWeb: Add HTMLFormElement#{method,action,target}

This commit is contained in:
Luke Wilde
2023-06-18 16:30:43 +01:00
committed by Andreas Kling
parent f04d1d493d
commit c5e0547377

View File

@@ -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();