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
Element.toFront is implemented as an appendChild call to reposition the element within the DOM.
Similar to previous issues with IE (#225, #527) it appears that on Firefox 83 (and older) this causes the element to be temporarily removed from the DOM and thus prevents it receiving events.
This is notable when calling toFront from scroll event listeners as this will move the elements (and thus require a mouseout), and prevent that event from reaching the element.
The text was updated successfully, but these errors were encountered:
Element.toFront
is implemented as anappendChild
call to reposition the element within the DOM.Similar to previous issues with IE (#225, #527) it appears that on Firefox 83 (and older) this causes the element to be temporarily removed from the DOM and thus prevents it receiving events.
This is notable when calling
toFront
fromscroll
event listeners as this will move the elements (and thus require amouseout
), and prevent that event from reaching the element.The text was updated successfully, but these errors were encountered: