pub(crate) const DELEGATABLE_EVENT_NAMES: [&str; 46] = [
"click",
"dblclick",
"mousedown",
"mouseup",
"mousemove",
"mouseenter",
"mouseleave",
"mouseover",
"mouseout",
"contextmenu",
"input",
"keydown",
"keyup",
"keypress",
"focus",
"blur",
"focusin",
"focusout",
"submit",
"change",
"drag",
"dragstart",
"dragend",
"dragover",
"dragenter",
"dragleave",
"drop",
"touchstart",
"touchend",
"touchmove",
"touchcancel",
"wheel",
"copy",
"cut",
"paste",
"play",
"pause",
"ended",
"loadeddata",
"canplay",
"volumechange",
"timeupdate",
"scroll",
"animationstart",
"animationend",
"transitionend",
];