You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pointerover/pointerout won't be dispatched and only pointermove will be dispatched while capturing. Moreover mouseover/mouseout also not dispatched while capturing by setPointerCapture.
TST listens mouseover/mouseout while capturing. We need to rewrite codes around those events with pointermove.
setPointerCapture/releasePointerCapture requires pointerId. It is 0 for a mouse.
dragstart and other drag events have no pointerId. We need to store the last available pointerId by the listener of pointerdown.
The text was updated successfully, but these errors were encountered:
setCapture
/releaseCapture
are now deprecated and we need to update codes to use newsetPoitnerCapture
/releasePointerCapture
. But they have some differences.pointerover
/pointerout
won't be dispatched and onlypointermove
will be dispatched while capturing. Moreovermouseover
/mouseout
also not dispatched while capturing bysetPointerCapture
.mouseover
/mouseout
while capturing. We need to rewrite codes around those events withpointermove
.setPointerCapture
/releasePointerCapture
requirespointerId
. It is0
for a mouse.dragstart
and other drag events have nopointerId
. We need to store the last availablepointerId
by the listener ofpointerdown
.The text was updated successfully, but these errors were encountered: