blob: 506853c9d9f05abc54aea0cb1eecfbcdc113aa04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/form-elements.html#htmllegendelement
[Exposed=Window]
interface HTMLLegendElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Reflect] attribute DOMString align;
};
|