mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:57:45 +00:00
LibWeb: Implement RadioNodeList
This interface is used in the interface for HTMLFormControlsCollection as a live view over its matching elements. Currently the "value" attribute for this interface is left unimplemented.
This commit is contained in:
parent
c2bf391f81
commit
daefe744ba
7 changed files with 73 additions and 1 deletions
7
Userland/Libraries/LibWeb/DOM/RadioNodeList.idl
Normal file
7
Userland/Libraries/LibWeb/DOM/RadioNodeList.idl
Normal file
|
@ -0,0 +1,7 @@
|
|||
#import <DOM/NodeList.idl>
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#radionodelist
|
||||
[Exposed=Window, UseNewAKString]
|
||||
interface RadioNodeList : NodeList {
|
||||
// FIXME: attribute DOMString value;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue