HTMLMarqueeElement.idl 923 B

123456789101112131415161718192021222324
  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. // FIXME: [CEReactions] attribute unsigned long hspace;
  11. // FIXME: [CEReactions] attribute long loop;
  12. // FIXME: [CEReactions] attribute unsigned long scrollAmount;
  13. // FIXME: [CEReactions] attribute unsigned long scrollDelay;
  14. // FIXME: [CEReactions] attribute boolean trueSpeed;
  15. // FIXME: [CEReactions] attribute unsigned long vspace;
  16. [CEReactions, Reflect] attribute DOMString width;
  17. // FIXME: undefined start();
  18. // FIXME: undefined stop();
  19. };