- From: Gary Kacmarcik <notifications@github.com>
- Date: Mon, 09 Apr 2018 14:12:47 -0700
- To: w3c/uievents <uievents@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 9 April 2018 21:13:11 UTC
We need a algorithmic description of how mouse events are fired. `mousedown`, `mouseenter`, `mouseleave`, `mousemove`, `mouseout`, `mouseover`, `mouseup` See https://w3c.github.io/uievents/#events-mouseevent-event-order Starting point: ``` 1 mousemove (Pointing device is moved into element A...) 2 mouseover A 3 mouseenter A 4 mousemove A Multiple mousemove events (Pointing device is moved out of element A...) 5 mouseout A 6 mouseleave A ``` -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/w3c/uievents/issues/196
Received on Monday, 9 April 2018 21:13:11 UTC