LibWeb: Implement the HTMLInputElement.height attribute

This allows the height of an image button input to be set and queried.
This commit is contained in:
Tim Ledbetter 2024-11-29 17:56:24 +00:00 committed by Andreas Kling
commit b39fdcfec2
Notes: github-actions[bot] 2024-11-30 10:19:26 +00:00
5 changed files with 60 additions and 1 deletions

View file

@ -22,7 +22,7 @@ interface HTMLInputElement : HTMLElement {
[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;
[CEReactions] attribute unsigned long height;
attribute boolean indeterminate;
[FIXME] readonly attribute HTMLDataListElement? list;
[CEReactions, Reflect] attribute DOMString max;