summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLSelectElement.idl
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2022-03-20 16:13:23 +0100
committerAndreas Kling <kling@serenityos.org>2022-03-20 16:19:47 +0100
commita6063455766a0cf642b806e4c9e6edbed1d290bd (patch)
tree7792525af992a347ed9e6c0c1fa467c6d75ac167 /Userland/Libraries/LibWeb/HTML/HTMLSelectElement.idl
parent5dc085548947984fde41a48046ddc805162c0a27 (diff)
downloadserenity-a6063455766a0cf642b806e4c9e6edbed1d290bd.zip
LibWeb: Implement HTMLSelectElement.selectedIndex
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLSelectElement.idl')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLSelectElement.idl2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLSelectElement.idl b/Userland/Libraries/LibWeb/HTML/HTMLSelectElement.idl
index 6a2a348242..e473f31070 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLSelectElement.idl
+++ b/Userland/Libraries/LibWeb/HTML/HTMLSelectElement.idl
@@ -8,4 +8,6 @@ interface HTMLSelectElement : HTMLElement {
[Reflect] attribute boolean required;
[SameObject] readonly attribute HTMLOptionsCollection options;
+ attribute long selectedIndex;
+
};