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
There is a well-known IE11 issue regarding SVG elements receiving tab focus. Svg.js currently adds an extra svg tag to the bottom of the body, which receives this focus.
The fix is to add focusable=false to the <svg> tag with ID SvgJsSvg1001. Right now, we are having to wait for the library to inject this DOM and hack this attribute in ourselves. It would be great if users didn't have to do that.
Fiddle
This behavior should be seen in the minimal example.
Explanation
What is the behaviour you expect?
On IE11, when tabbing away from the last focusable element on the page, the browser should receive the next tab.
What is happening instead?
An extra tab is needed, because the added <svg> tag is receiving the focus inappropriately.
What error message are you getting?
None.
The text was updated successfully, but these errors were encountered:
Ah I see! Thats totally fair!
Feel free to make a pr for this one, I don't have a working IE browser to test this on (I don't use windows),
but I think we can merge this one without too many problems.
### Fixed
- fixed calling `parent()` on `documentFragment`s children (#927)
- parser is not focusable anymore (#908)
- `SVG.Element.click(null)` correctly unbinds the event (#878)
- fix memory leak (#905)
### Added
- `SVG.Set` now accepts another Set as input (#893)
- `on()/off()` accepts multiple event names as input (backport from 3.0)
Bug report
There is a well-known IE11 issue regarding SVG elements receiving tab focus. Svg.js currently adds an extra svg tag to the bottom of the body, which receives this focus.
The fix is to add
focusable=false
to the<svg>
tag with IDSvgJsSvg1001
. Right now, we are having to wait for the library to inject this DOM and hack this attribute in ourselves. It would be great if users didn't have to do that.Fiddle
This behavior should be seen in the minimal example.
Explanation
On IE11, when tabbing away from the last focusable element on the page, the browser should receive the next tab.
An extra tab is needed, because the added
<svg>
tag is receiving the focus inappropriately.None.
The text was updated successfully, but these errors were encountered: