LibWeb: Implement HTMLSelectElement.type

This commit is contained in:
Luke Wilde
2022-11-05 04:51:42 +00:00
committed by Andreas Kling
parent c247fefee7
commit c4ee43c5b4
Notes: sideshowbarker 2024-07-17 10:08:28 +09:00
3 changed files with 17 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ interface HTMLSelectElement : HTMLElement {
[Reflect] attribute boolean required;
[SameObject] readonly attribute HTMLOptionsCollection options;
readonly attribute DOMString type;
readonly attribute unsigned long length;
getter Element? item(unsigned long index);
getter Element? namedItem(DOMString name);