- If event’s type attribute value is a match for any of the strings in the first column in the following table, set event’s type attribute value to the string in the second column on the same row as the matching string, and return otherwise.
| Event type |
Legacy event type |
| "animationend" |
"webkitAnimationEnd" |
| "animationiteration" |
"webkitAnimationIteration" |
| "animationstart" |
"webkitAnimationStart" |
| "transitionend" |
"webkitTransitionEnd" |
I saw this table not once, but I really can't understand why is there only 4 names of event handlers?
Why don't we see for example "transitionstart" or "transitioncancel" and so on?
Need clarification about this movement in direction these names.