-
Notifications
You must be signed in to change notification settings - Fork 11
Description
Use Nightly Builds [beta6-dev]
Description of the issue
Use Tool: ARC Toolkit on Chrome.
Test on new folder - Media Manager Page.
Error Results
Keyboard - category
- Tabindex sub-category
- 3 errors with description - code problem on one HTML line type
Description:
Error: tabindex is used on a non-interactive component in a way that puts it in the tab order. Only active element should be in the tab order
Recommend: Remove the tabindex attribute or set it to '-1', OR define the role of the control.
These errors from the tool are classified as
non Active Element In Tab Order.
Line of code error detect: <div tabindex="0" class=""></div>
- Tab order sub-category
- 1 error
It is the tracker of eye movement on the entire page. There is'n a description.
- ARIA - category - ARIA usage sub-category
- 5 errors with description - code problem on one HTML line type
Description:
Error: aria-label is used on an element which does not reliably convey this attribute
Recommend: Put aria-label on an active element or an element with a role defined, or use visually hidden text instead
aria Label On Non Interactive Element
Lines of code error detect:
<span aria-label="Toggle select item" title="Toggle select item" class="media-browser-select"></span>