Really weird, for a same TODOMVC react app, Chrome (101.0.4951.64) seems to be faster than Firefox (77.0.1) at handling a same DOM event (~12ms vs ~30ms).
But with my implementation of the same TODOMVC app in wasm, built with Go, the same event is handled much faster in Firefox than in Chrome (~25ms vs ~50+ms).
(And actually wasm event handling is slightly faster than the handling of the same event in react)
Mostly seems to me like calling into wasm has close to no overhead in Firefox.
Anyone noticed something similar? Perhaps that it warrants a report.