I realized that tabindex=-1
doesn't work for <svg></svg>
elements. Is there a way to disable the focus
event for it? preventDefault
, stopPropagation
, stopImmediatePropagation
also do not work.
<svg focusable="false"></svg>
does this job.