mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 00:55:06 +00:00

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.
7 lines
225 B
Text
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;
|
|
};
|