Definition
HTML Standard defines HTMLLegendElement
[Exposed=Window]
interface HTMLLegendElement : HTMLElement {
[HTMLConstructor] constructor();
readonly attribute HTMLFormElement? form;
// also has obsolete members
};
partial interface HTMLLegendElement {
[CEReactions] attribute DOMString align;
};
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface HTMLLegendElement : HTMLElement {
[HTMLConstructor] constructor();
readonly attribute HTMLFormElement? form;
[CEReactions] attribute DOMString align;
// also has obsolete members
};