-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
Description
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:
- 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.