LibWeb: Add HTMLSelectElement showPicker()

Adds the showPicker() function for select elements.
This doesn't do the check for "being rendered" which is in the spec.
This commit is contained in:
Luke Warlow
2024-06-13 18:11:45 +02:00
committed by Andrew Kaster
parent b94ec419ac
commit 5098ed6b1f
3 changed files with 72 additions and 1 deletions

View File

@@ -37,5 +37,7 @@ interface HTMLSelectElement : HTMLElement {
[FIXME] boolean reportValidity();
[FIXME] undefined setCustomValidity(DOMString error);
undefined showPicker();
readonly attribute NodeList labels;
};