2022-02-15 16:10:51 -03:00
|
|
|
#import <HTML/HTMLElement.idl>
|
|
|
|
|
|
2022-10-07 19:45:09 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/obsolete.html#htmlmarqueeelement
|
2023-09-02 10:09:33 -03:00
|
|
|
[Exposed=Window]
|
2020-07-31 23:05:43 -03:00
|
|
|
interface HTMLMarqueeElement : HTMLElement {
|
|
|
|
|
|
2023-03-23 04:48:52 -03:00
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
|
|
2023-02-28 22:45:18 -03:00
|
|
|
[CEReactions, Reflect] attribute DOMString behavior;
|
|
|
|
|
[CEReactions, Reflect=bgcolor] attribute DOMString bgColor;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString direction;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString height;
|
2024-05-21 08:12:54 -03:00
|
|
|
[CEReactions, Reflect] attribute unsigned long hspace;
|
2024-05-19 10:15:49 -03:00
|
|
|
[FIXME, CEReactions] attribute long loop;
|
2024-07-12 20:25:04 -03:00
|
|
|
[CEReactions] attribute unsigned long scrollAmount;
|
2024-07-12 20:33:26 -03:00
|
|
|
[CEReactions] attribute unsigned long scrollDelay;
|
2024-07-12 20:41:31 -03:00
|
|
|
[CEReactions, Reflect=truespeed] attribute boolean trueSpeed;
|
2024-05-21 08:12:54 -03:00
|
|
|
[CEReactions, Reflect] attribute unsigned long vspace;
|
2023-02-28 22:45:18 -03:00
|
|
|
[CEReactions, Reflect] attribute DOMString width;
|
2020-07-31 23:05:43 -03:00
|
|
|
|
2024-05-19 07:15:54 -03:00
|
|
|
[FIXME] undefined start();
|
|
|
|
|
[FIXME] undefined stop();
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|