mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-18 09:50:27 +00:00
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.
7 lines
230 B
Text
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();
|
|
};
|