mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 21:29:06 +00:00
LibWeb: Add select and options collection remove method
This commit is contained in:
parent
5decf4b33c
commit
7372c01786
Notes:
sideshowbarker
2024-07-17 14:36:19 +09:00
Author: https://github.com/bplaat
Commit: 7372c01786
Pull-request: https://github.com/SerenityOS/serenity/pull/23895
Reviewed-by: https://github.com/shannonbooth
8 changed files with 62 additions and 3 deletions
|
@ -24,8 +24,8 @@ interface HTMLSelectElement : HTMLElement {
|
|||
// FIXME: Element is really HTMLOptionElement
|
||||
Element? namedItem(DOMString name);
|
||||
[CEReactions] undefined add((HTMLOptionElement or HTMLOptGroupElement) element, optional (HTMLElement or long)? before = null);
|
||||
// FIXME: [CEReactions] undefined remove(); // ChildNode overload
|
||||
// FIXME: [CEReactions] undefined remove(long index);
|
||||
[CEReactions] undefined remove(); // ChildNode overload
|
||||
[CEReactions] undefined remove(long index);
|
||||
// FIXME: [CEReactions] setter undefined (unsigned long index, HTMLOptionElement? option);
|
||||
|
||||
// FIXME: [SameObject] readonly attribute HTMLCollection selectedOptions;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue