mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 12:07:14 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
10 lines
542 B
Plaintext
10 lines
542 B
Plaintext
// https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#htmloptionscollection
|
|
[Exposed=Window]
|
|
interface HTMLOptionsCollection : HTMLCollection {
|
|
[CEReactions] attribute unsigned long length; // shadows inherited length
|
|
// [CEReactions] setter undefined (unsigned long index, HTMLOptionElement? option);
|
|
[CEReactions] undefined add((HTMLOptionElement or HTMLOptGroupElement) element, optional (HTMLElement or long)? before = null);
|
|
[CEReactions] undefined remove(long index);
|
|
attribute long selectedIndex;
|
|
};
|