Suppose I have two arrows on either end of a carousel which when clicked rotate the carousel. I might have markup like:
<a class="carousel-prev" alt="Previous Item"><i class="icon-angle-left" aria-hidden="true"></i></a>
<a class="carousel-next" alt="Next Item"><i class="icon-angle-right" aria-hidden="true"></i></a>
In this case, does aria-hidden="true"
attribute break accessibility, or is it okay since the outer <a>
tag is tabbable and is using alt text?