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