1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 17:15:08 +00:00
serenity/Userland/Libraries/LibWeb/DOM/RadioNodeList.idl
2023-08-26 13:51:18 +02:00

7 lines
215 B
Text

#import <DOM/NodeList.idl>
// https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#radionodelist
[Exposed=Window, UseNewAKString]
interface RadioNodeList : NodeList {
attribute DOMString value;
};