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