blob: 84f9a6e2c4f552633b5c07dbb3775d3d84fa2457 (
plain)
1
2
3
4
5
6
7
8
9
|
#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/forms.html#htmllabelelement
[Exposed=Window]
interface HTMLLabelElement : HTMLElement {
[Reflect=for] attribute DOMString htmlFor;
};
|