Is it possible to receive a dragEnter event from a container which is fully covered by another container with position:absolute
<div>
<div ondragenter="alert('ondragenter')"> test </div>
<div style="position: absolute; top: 0px; top: 0px; height: 100px;">Over</div>
</div>