BETA: Applied Accessibility: Improve Accessibility of Audio Content with the audio Element, not detecting closing </audio> tag.
See original GitHub issueApplied Accessibility: Improve Accessibility of Audio Content with the audio Element
Issue Description
I tried to complete the task at hand. I believe it is done correctly, but it is saying that I still require a closing audio tag. You can see from the image below that I do have one in there and it is still not passing.
Browser Information
Note that this was performed in Chrome.
- Browser Name, Version: Chrome, latest version
- Operating System: Windows 10
- Mobile, Desktop, or Tablet: Desktop
Your Code
<body>
<header>
<h1>Real Coding Ninjas</h1>
</header>
<main>
<p>A sound clip of Zersiax's screen reader in action.</p>
<audio controls>
<source src="https://s3.amazonaws.com/freecodecamp/screen-reader.mp3" type="audio/mpeg" /> </audio>
</main>
</body>
Screenshot
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (1 by maintainers)
Top Results From Across the Web
[Beta] Applied Accessibility - Tests fails to check for closing ...
The issue with this challenge is that you can use the opening <audio> tag and leave out the closing </audio> tag and the...
Read more >Make your Vidyard players more accessible
This article outlines what you can do improve the accessibility of your Vidyard players for viewers with disabilities.
Read more >Change Accessibility settings on Mac - Apple Support
Change Accessibility settings on Mac. If you have vision, hearing, or mobility difficulties, try out the wide range of Accessibility settings on your...
Read more >Web Content Accessibility Guidelines (WCAG) 2.2 - W3C
Web Content Accessibility Guidelines (WCAG) 2.2 covers a wide range of recommendations for making Web content more accessible.
Read more >Tackle accessibility in your designs with these useful plugins
Tackle accessibility challenges color contrast and keyboard navigation as part of your design process in Figma with 4 useful plugins.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ran into this same issue tonight. For everyone still having trouble, do not include an id attribute in your audio tag. It seemed to accept my answer after I removed the id attribute completely.
still not fixed