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
Do we really want mousedown and mouseup events to have relatedTargetScoped flag set? The following definition in the current spec seems to indicate any event that uses MouseEvent interface to have this flag set:
A trusted event's relatedTargetScoped flag must be initialized to true if the event has a relatedTarget property
Is this an intentional (that any mousedown/mouseup would not propagate out of a shadow root)?
The text was updated successfully, but these errors were encountered:
If it's null, I think it's okay not to set relatedTargetScoped flag to true. This does not affect the actual event path, anyway. The observable difference is the value of Event.relatedTargetScoped flag, which is a minor issue, I think.
Do we really want
mousedown
andmouseup
events to haverelatedTargetScoped
flag set? The following definition in the current spec seems to indicate any event that usesMouseEvent
interface to have this flag set:Is this an intentional (that any mousedown/mouseup would not propagate out of a shadow root)?
The text was updated successfully, but these errors were encountered: