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
Mouse drag: selectionchange first and then select.
Shift+arrow keys on keyboard: select first and then selectionchange.
Selection setter APIs e.g. selectionStart: select first on Gecko, no consistency on Blink (it's racy).
The mouse drag case fires multiple selectionchanges and then a select event at mouseup. I think selectionchange events should be fired before select events to keep it that way.
The text was updated successfully, but these errors were encountered:
Am I correct to assume touch devices would also need to be considered here? I'm unfamiliar with the selection API in relation, but I understand the touchstart and touchend events sandwich the selectionchange event.
There is no defined order between them.
The mouse drag case fires multiple selectionchanges and then a select event at mouseup. I think selectionchange events should be fired before select events to keep it that way.
The text was updated successfully, but these errors were encountered: