HTMLMarqueeElement.idl 397 B

12345678910111213
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/obsolete.html#htmlmarqueeelement
  3. [Exposed=Window]
  4. interface HTMLMarqueeElement : HTMLElement {
  5. [Reflect] attribute DOMString behavior;
  6. [Reflect=bgcolor] attribute DOMString bgColor;
  7. [Reflect] attribute DOMString direction;
  8. [Reflect] attribute DOMString height;
  9. [Reflect] attribute DOMString width;
  10. };