We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This looks like a long-standing typo in F50 https://www.w3.org/WAI/WCAG22/Techniques/failures/F50
settime-out in the following example should read setTimeout or window.setTimeout (both mean the same thing but the latter is easier to search for)
settime-out
setTimeout
window.setTimeout
Edit: due to the typo the F50 example doesn't cause blinking, so isn't a failure of 2.2.2. The related technique SCR22 does use setTimeout
<script> // blink "on" state function show(){ document.getElementById("blink1").style.visibility = "visible"; settime-out("hide()", 450); } // blink "off" state function hide(){ document.getElementById("blink1").style.visibility = "hidden"; settime-out("show()", 450); } // kick it off show(); </script> ... <span id="blink1">This content will blink</span>
The text was updated successfully, but these errors were encountered:
fix code sample bug
6819e5e
Closes #4224
fstrr
Successfully merging a pull request may close this issue.
This looks like a long-standing typo in F50
https://www.w3.org/WAI/WCAG22/Techniques/failures/F50
settime-out
in the following example should readsetTimeout
orwindow.setTimeout
(both mean the same thing but the latter is easier to search for)Edit: due to the typo the F50 example doesn't cause blinking, so isn't a failure of 2.2.2. The related technique SCR22 does use
setTimeout
The text was updated successfully, but these errors were encountered: