summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLMarqueeElement.idl
blob: b58dd0e52c17fe5a8b4533522bee65e6fe2be919 (plain)
1
2
3
4
5
6
7
8
9
10
11
#import <HTML/HTMLElement.idl>

interface HTMLMarqueeElement : HTMLElement {

    [Reflect] attribute DOMString behavior;
    [Reflect=bgcolor] attribute DOMString bgColor;
    [Reflect] attribute DOMString direction;
    [Reflect] attribute DOMString height;
    [Reflect] attribute DOMString width;

};