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
Problematic behavior
The left column looks like a navigation, the items in this column should be in a <nav> element
The buttons in the left column should be structured in a <ul><li> list to allow screen reader users to know the number of elements present in the navigation.
Possible Solution
Add a role="navigation" to the element <nav>
Add a list <ul><li>
Example :
<ul>
<li><button>Tous les documents</button></li>
<li><button>Mes documents</button></li>
<li><button>Partagés avec moi</button></li>
</ul>
The text was updated successfully, but these errors were encountered:
Problematic behavior
The left column looks like a navigation, the items in this column should be in a
<nav>
elementThe buttons in the left column should be structured in a
<ul><li>
list to allow screen reader users to know the number of elements present in the navigation.Possible Solution
role="navigation"
to the element<nav>
<ul><li>
Example :
The text was updated successfully, but these errors were encountered: