LibWeb: Implement HTMLMarqueeElement.trueSpeed

This commit is contained in:
Jamie Mansfield 2024-07-13 00:41:31 +01:00 committed by Andreas Kling
commit 1f1276ffb1
Notes: sideshowbarker 2024-07-16 18:03:21 +09:00
2 changed files with 2 additions and 1 deletions

View file

@ -250,6 +250,7 @@ namespace AttributeNames {
__ENUMERATE_HTML_ATTRIBUTE(target) \
__ENUMERATE_HTML_ATTRIBUTE(text) \
__ENUMERATE_HTML_ATTRIBUTE(title) \
__ENUMERATE_HTML_ATTRIBUTE(truespeed) \
__ENUMERATE_HTML_ATTRIBUTE(type) \
__ENUMERATE_HTML_ATTRIBUTE(usemap) \
__ENUMERATE_HTML_ATTRIBUTE(valign) \

View file

@ -14,7 +14,7 @@ interface HTMLMarqueeElement : HTMLElement {
[FIXME, CEReactions] attribute long loop;
[CEReactions] attribute unsigned long scrollAmount;
[CEReactions] attribute unsigned long scrollDelay;
[FIXME, CEReactions] attribute boolean trueSpeed;
[CEReactions, Reflect=truespeed] attribute boolean trueSpeed;
[CEReactions, Reflect] attribute unsigned long vspace;
[CEReactions, Reflect] attribute DOMString width;