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