I was implementing WCAG (Web Content Accessibility Guidelines) on our website. I am using JAWS screen reader for testing and navigating using Tab key.
The issue is, the screen reader reads an extra content while navigating to the video player. It reads "visited link" instead of going to next element and nothing being focused or highlighted while reading the same. We cannot see any elements when inspecting through the browser also.
<ul class="nav in" id="side-menu">
<li><a href="/myaccount"><i class="fa fa-university" aria-hidden="true"></i> My Account</a></li>
<li><a href="/register"><i class="fa fa-pencil" aria-hidden="true"></i> Register</a></li>
<li><a href="/contact"><i class="fa fa-envelope" aria-hidden="true"></i>Contact Support</a></li>
</ul>
<div class="vzaar_media_player embed-responsive embed-responsive-4by3">
<iframe id="iframe-example" src="https://www.youtube.com/embed/2MpUj-Aua48?ecver=1&autohide=1&showinfo=0&feature=oembed" class="embed-responsive-item" frameborder="0" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="">
</iframe>
</div>
In the above example, the screen reader navigates and reads correctly till "Contact Support". Then if we try to move forward using Tab key, it reads "Contact support visited link" instead of going to the play button in the player.