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
Tooltips gained some functionality to automatically update their control element to make it keyboard accessible. However, due to a bug with IE and Edge 12-17, the tabIndex property reports the incorrect value for elements without an explicit tabindex. (Microsoft Issue #4365703)
This seems to have been corrected in Edge 18 (slowly rolling out across Windows 10 machines), but has not been corrected in IE11.
Need to look into options for IE11 compatibility.
If in doubt, manually add a tabindex="0" to the control element.
Steps to Reproduce
Steps to reproduce the behavior:
Go to 'IE11/Edge(12-17)'
Click on tabIndex in the inspect element
See how tabIndex starts at '0' but should start at tabindex="1"
Expected behavior
For tabIndex to begin with tabindex="1"
Environment
Please complete the following information:
Browser: [IE11 and Edge 12-17]
Additional Context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
In v0.15.0-rc.0, <hx-tooltip> added functionality in an attempt to automatically update its control element to make it keyboard accessible. However, due to a bug with IE and Edge 12-17, the tabIndex property reports the incorrect value for elements without an explicit tabindex. (Microsoft Issue #4365703)
This seems to have been corrected in Edge 18 (slowly rolling out across Windows 10 machines)
Describe the Bug
Tooltips gained some functionality to automatically update their control element to make it keyboard accessible. However, due to a bug with IE and Edge 12-17, the tabIndex property reports the incorrect value for elements without an explicit tabindex. (Microsoft Issue #4365703)
This seems to have been corrected in Edge 18 (slowly rolling out across Windows 10 machines), but has not been corrected in IE11.
Need to look into options for IE11 compatibility.
If in doubt, manually add a tabindex="0" to the control element.
Steps to Reproduce
Steps to reproduce the behavior:
Expected behavior
For tabIndex to begin with tabindex="1"
Environment
Please complete the following information:
Additional Context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: