Don't let svg element be focusable in IE.

This commit is contained in:
Davide P. Cervone 2015-09-12 17:33:56 -04:00
parent 49e0852d36
commit 3fa5b2d2ad

View File

@ -2103,6 +2103,7 @@
if (alttext && !svg.element.getAttribute("aria-label")) span.setAttribute("aria-label",alttext);
if (!svg.element.getAttribute("role")) span.setAttribute("role","math");
// span.setAttribute("tabindex",0); // causes focus outline, so disable for now
svg.element.setAttribute("focusable","false");
span.appendChild(svg.element);
svg.element = null;
//