Definition
HTML Standard defines HTMLHRElement
[Exposed=Window]
interface HTMLHRElement : HTMLElement {
[HTMLConstructor] constructor();
// also has obsolete members
};
partial interface HTMLHRElement {
[CEReactions, Reflect] attribute DOMString align;
[CEReactions, Reflect] attribute DOMString color;
[CEReactions, Reflect] attribute boolean noShade;
[CEReactions, Reflect] attribute DOMString size;
[CEReactions, Reflect] attribute DOMString width;
};
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface HTMLHRElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Reflect] attribute DOMString align;
[CEReactions, Reflect] attribute DOMString color;
[CEReactions, Reflect] attribute boolean noShade;
[CEReactions, Reflect] attribute DOMString size;
[CEReactions, Reflect] attribute DOMString width;
// also has obsolete members
};