HTMLHRElement.idl 487 B

123456789101112131415
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/grouping-content.html#htmlhrelement
  3. [Exposed=Window]
  4. interface HTMLHRElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions, Reflect] attribute DOMString align;
  7. [CEReactions, Reflect] attribute DOMString color;
  8. [CEReactions, Reflect=noshade] attribute boolean noShade;
  9. [CEReactions, Reflect] attribute DOMString size;
  10. [CEReactions, Reflect] attribute DOMString width;
  11. };