1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 00:55:06 +00:00
serenity/Userland/Libraries/LibWeb/DOM/RadioNodeList.idl
Shannon Booth daefe744ba 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.
2023-08-20 11:04:03 +02:00

7 lines
225 B
Text

#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;
};