mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 17:15:08 +00:00
7 lines
215 B
Text
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;
|
|
};
|