1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:48:11 +00:00

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