1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:28:12 +00:00

LibWeb: Implement HTMLSelectElement.selectedIndex

This commit is contained in:
Andreas Kling 2022-03-20 16:13:23 +01:00
parent 5dc0855489
commit a606345576
4 changed files with 70 additions and 2 deletions

View file

@ -8,4 +8,6 @@ interface HTMLSelectElement : HTMLElement {
[Reflect] attribute boolean required;
[SameObject] readonly attribute HTMLOptionsCollection options;
attribute long selectedIndex;
};