1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:07:35 +00:00

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
2 changed files with 8 additions and 8 deletions

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 {