Level 1
6.5 Ensure that dynamic content is accessible or provide an alternative presentation or page.
L - script must have functional text
Requirement 15: Script/Object Alternatives
Priority 1
1.1 Provide a text equivalent for every non-text element.
script must have a noscript section.
script must have a noscript section.
script elements that occur within the body must be followed by a noscript section.
noscript section immediately following the script that provides the same functionality as the script.
script in the content.script operation is essential to the page content (it's not just eye-candy).script operation is essential to the page content then check if there is a noscript section following.noscript section provides an equivalent to the script.script must have a valid noscript section.noscript section after the script that is equivalent to the script.script and noscript.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #90 - Negative</title> </head> <body> <script> </script> <noscript>Alternate content for script</noscript> </body> </html>
script element without a noscript.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #90 - Positive</title> </head> <body> <script/> </body> </html>