This page listens to some events and it prints them in the dedicated column. This playground can be used to ensure that events from within our widgets don't leak onto the page.
A note about events: Only a single event
object object is passed around listeners for each event. Different listeners and different phases (like capture
) still deal with the same event
object. So there cannot be a capture
event on input fields because it's already the top-most target.
document | document capture | input |
---|---|---|