mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-15 21:41:58 +00:00
LibWeb: Implement the HTMLInputElement.list
attribute
This returns the `HTMLDataListElement` pointed to by the `list` content attribute.
This commit is contained in:
parent
a37315da87
commit
6178557a07
Notes:
github-actions[bot]
2025-03-09 15:11:49 +00:00
Author: https://github.com/tcl3
Commit: 6178557a07
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3782
7 changed files with 164 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue