pub const EVENT_ALIASES: &[(&str, &str)];Expand description
Spellings of an event that are not typos either.
keydown is the case worth having: the client does listen for it — filtered to the Enter key,
and registered under the name enter, because “submit on Enter” is what a text input wants and
a raw keydown is not something a declarative attribute can usefully carry. So somebody writing
on_keydown has guessed the DOM’s name for the thing that exists, which no distance search will
find: keydown is seven edits from enter.