HTMLMarqueeElement.idl 500 B

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