### Reproduction ### Steps to reproduce - Add an onCompositionStart to a Preact dom element - Try using an input method on that input, making sure to start a composition. ### Expected Behavior The onCompositionStart handler should be called. ### Actual Behavior The onCompositionStart handler doesn't get called because Preact binds it to `"CompositionStart"` rather than `"compositionstart"` The same applies for `"compositionend"` and `"compositionupdate"`.