
This is almost guaranteed not to be all CEReactions we need to add, but this puts us in a much better situation.
11 lines
265 B
Text
11 lines
265 B
Text
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/forms.html#htmllabelelement
|
|
[Exposed=Window]
|
|
interface HTMLLabelElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions, Reflect=for] attribute DOMString htmlFor;
|
|
|
|
};
|