LibWeb: Correct casing of webkitTransitionEnd and webkitAnimation*

This corrects the casing of the legacy event types webkitTransitionEnd
and webkitAnimation{End,Iteration,Start}.
This commit is contained in:
Kenneth Myhra 2023-04-07 11:30:56 +02:00 committed by Linus Groh
parent 59a21c6274
commit d7ff360969
Notes: sideshowbarker 2024-07-17 05:19:06 +09:00
2 changed files with 8 additions and 8 deletions

View file

@ -91,10 +91,10 @@ namespace Web::HTML::EventNames {
__ENUMERATE_HTML_EVENT(visibilitychange) \
__ENUMERATE_HTML_EVENT(volumechange) \
__ENUMERATE_HTML_EVENT(waiting) \
__ENUMERATE_HTML_EVENT(webkitanimationend) \
__ENUMERATE_HTML_EVENT(webkitanimationiteration) \
__ENUMERATE_HTML_EVENT(webkitanimationstart) \
__ENUMERATE_HTML_EVENT(webkittransitionend)
__ENUMERATE_HTML_EVENT(webkitAnimationEnd) \
__ENUMERATE_HTML_EVENT(webkitAnimationIteration) \
__ENUMERATE_HTML_EVENT(webkitAnimationStart) \
__ENUMERATE_HTML_EVENT(webkitTransitionEnd)
#define __ENUMERATE_HTML_EVENT(name) extern FlyString name;
ENUMERATE_HTML_EVENTS

View file

@ -71,10 +71,10 @@
E(ontoggle, HTML::EventNames::toggle) \
E(onvolumechange, HTML::EventNames::volumechange) \
E(onwaiting, HTML::EventNames::waiting) \
E(onwebkitanimationend, HTML::EventNames::webkitanimationend) \
E(onwebkitanimationiteration, HTML::EventNames::webkitanimationiteration) \
E(onwebkitanimationstart, HTML::EventNames::webkitanimationstart) \
E(onwebkittransitionend, HTML::EventNames::webkittransitionend) \
E(onwebkitanimationend, HTML::EventNames::webkitAnimationEnd) \
E(onwebkitanimationiteration, HTML::EventNames::webkitAnimationIteration) \
E(onwebkitanimationstart, HTML::EventNames::webkitAnimationStart) \
E(onwebkittransitionend, HTML::EventNames::webkitTransitionEnd) \
E(onwheel, UIEvents::EventNames::wheel)
namespace Web::HTML {