eureka2 / ab-datepicker

An accessible and bootstrap compatible datepicker
MIT License
63 stars 55 forks source link

Accessibility: empty cells missing role="gridcell" and aria-disabled="true" #55

Open ambrosew opened 4 years ago

ambrosew commented 4 years ago

They should not be missing role="gridcell", and having aria-disabled="true" will tell Accessibility Insights tool to ignore color contrast requirements.

Before: <td class="empty">31</td>

After <td role="gridcell" aria-disabled="true" class="empty">31</td>