mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibWeb: Fixed IDL for HTMLInputElement
Use Enumerated for the form{Enctype, Method} attributes
This commit is contained in:
parent
ab04f6d422
commit
d08d305399
Notes:
github-actions[bot]
2024-10-21 21:41:59 +00:00
Author: https://github.com/samu698
Commit: d08d305399
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1884
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/BodilessSleeper
Reviewed-by: https://github.com/stelar7
Reviewed-by: https://github.com/tcl3
5 changed files with 132 additions and 2 deletions
|
@ -18,8 +18,8 @@ interface HTMLInputElement : HTMLElement {
|
|||
readonly attribute HTMLFormElement? form;
|
||||
attribute FileList? files;
|
||||
[CEReactions] attribute USVString formAction;
|
||||
[FIXME, CEReactions] attribute DOMString formEnctype;
|
||||
[FIXME, CEReactions] attribute DOMString formMethod;
|
||||
[CEReactions, Reflect=formenctype, Enumerated=FormEnctypeAttribute] attribute DOMString formEnctype;
|
||||
[CEReactions, Reflect=formmethod, Enumerated=FormMethodAttribute] attribute DOMString formMethod;
|
||||
[CEReactions, Reflect=formnovalidate] attribute boolean formNoValidate;
|
||||
[CEReactions, Reflect=formtarget] attribute DOMString formTarget;
|
||||
[FIXME, CEReactions] attribute unsigned long height;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue