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