mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
The following classes are in the HTML spec and thus belong in the HTML namespace: * BeforeUnloadEvent * HTMLFormControlsCollection * RadioNodeList
8 lines
199 B
Plaintext
8 lines
199 B
Plaintext
#import <DOM/NodeList.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#radionodelist
|
|
[Exposed=Window]
|
|
interface RadioNodeList : NodeList {
|
|
attribute DOMString value;
|
|
};
|