LibWeb: Implement the HTMLInputElement.list attribute

This returns the `HTMLDataListElement` pointed to by the `list`
content attribute.
This commit is contained in:
Tim Ledbetter 2025-03-03 15:23:48 +00:00 committed by Tim Ledbetter
parent a37315da87
commit 6178557a07
Notes: github-actions[bot] 2025-03-09 15:11:49 +00:00
7 changed files with 164 additions and 1 deletions

View file

@ -1,3 +1,4 @@
#import <HTML/HTMLDataListElement.idl>
#import <HTML/HTMLElement.idl>
#import <HTML/HTMLFormElement.idl>
#import <HTML/PopoverInvokerElement.idl>
@ -25,7 +26,7 @@ interface HTMLInputElement : HTMLElement {
[CEReactions, Reflect=formtarget] attribute DOMString formTarget;
[CEReactions] attribute unsigned long height;
attribute boolean indeterminate;
[FIXME] readonly attribute HTMLDataListElement? list;
readonly attribute HTMLDataListElement? list;
[CEReactions, Reflect] attribute DOMString max;
[CEReactions] attribute long maxLength;
[CEReactions, Reflect] attribute DOMString min;