When the mouse pointer moves from element A to element B, how does a browser determine the sequence of boundary events (enter, leave, over, out) to fire?
Problem
PointerEvents boundary event (enter, leave, over, out) dispatch is not defined, and the corresponding dispatch mechanism in UIEvents Section 3.4.4. Mouse Event Order is example-based without a precise definition text.
Possible solution
Fix https://github.com/w3c/uievents/issues/383, then override that in PointerEvents into three different methods (one per pointer type) each with a corresponding state for "element under current primary pointer".
When the mouse pointer moves from element A to element B, how does a browser determine the sequence of boundary events (enter, leave, over, out) to fire?
Problem
PointerEvents boundary event (enter, leave, over, out) dispatch is not defined, and the corresponding dispatch mechanism in UIEvents Section 3.4.4. Mouse Event Order is example-based without a precise definition text.
Possible solution
Fix https://github.com/w3c/uievents/issues/383, then override that in PointerEvents into three different methods (one per pointer type) each with a corresponding state for "element under current primary pointer".