Skip to content

Commit

Permalink
LibWeb: Implement HTMLMarqueeElement.trueSpeed
Browse files Browse the repository at this point in the history
  • Loading branch information
jamierocks authored and awesomekling committed Jul 13, 2024
1 parent a917f81 commit 1f1276f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Userland/Libraries/LibWeb/HTML/AttributeNames.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) \
Expand Down
2 changes: 1 addition & 1 deletion Userland/Libraries/LibWeb/HTML/HTMLMarqueeElement.idl
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 1f1276f

Please sign in to comment.