ladybird/Libraries/LibWeb/HTML/HTMLSelectedContentElement.idl
Feng Yu b58fcaeecf LibWeb: Add HTMLSelectedContentElement for customizable select
Introduce the HTMLSelectedContentElement and integrate it into
<select>, <option> and HTMLParser.

See whatwg/html#10548.

There are two bugs with WPT tests which causes the third subtest
in selectedcontent.html and selectedcontent-mutations.html fail.
See whatwg/html#11882, web-platform-tests/wpt#55849.
2025-12-12 12:06:24 +00:00

7 lines
230 B
Text

#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/form-elements.html#htmlselectedcontentelement
[Exposed=Window]
interface HTMLSelectedContentElement : HTMLElement {
[HTMLConstructor] constructor();
};