HTMLHRElement.idl 384 B

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