LibWeb: Implement the HTMLInputElement.width attribute

This allows the width of an image button input to be set and queried.
This commit is contained in:
Tim Ledbetter 2024-11-29 17:45:07 +00:00 committed by Andreas Kling
commit 45a2823e08
Notes: github-actions[bot] 2024-11-30 10:19:31 +00:00
5 changed files with 79 additions and 4 deletions

View file

@ -43,7 +43,7 @@ interface HTMLInputElement : HTMLElement {
[CEReactions, LegacyNullToEmptyString] attribute DOMString value;
attribute object? valueAsDate;
attribute unrestricted double valueAsNumber;
[FIXME, CEReactions] attribute unsigned long width;
[CEReactions] attribute unsigned long width;
undefined stepUp(optional long n = 1);
undefined stepDown(optional long n = 1);