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