-
Notifications
You must be signed in to change notification settings - Fork 257
New issue
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
Tech using role log #435
Tech using role log #435
Conversation
changed title and SC reference.
it seems to have zero effect, and is not as relevant to a chat window
|
Some have even suggested that we should avoid using aria-relevant altogether. https://medium.com/dev-channel/why-authors-should-avoid-aria-relevant-5d3164fab1e3 |
re: aria-relevant I can take this out for now. I do think there is a case to be made for using it when a 'busy' message disappears (i.e., a user with vision sees the busy message go away and starts working, but the blind user is never notified of the removal of 'busy' so just waits for an update that never is announced), so I may tackle it when I get to that technique/use case -- although I agree the AT support is spotty right now. |
Disabled Send button to make it one-time in #436 |
Should the main heading talk about "improve AT support"? How about: "Using role=log to identify sequential information updates" Also, I might be misunderstanding aria-atomic but wouldn't 'false' mean that it reads the whole thing at once? That seems to be the opposite of what is desirable here. Also, the procedure seems self-fulfilling, where a log is marked up as a log. Could it be something like:
|
modified title and test procedure.
@alastc in regard to your question about aria-atomic, if it is set to false (the default for log) then it will only read the changes, not the entire contents. So your understanding seems to be opposite to the implementation. The following is from aria 1.1 spec:
Made your suggested changes to the title and test procedure wording. |
Thanks Mike, I haven't used atomic in anger yet. I just assumed that 'atomic' meant peice by peice, therefore 'true' would mean per-change, and false would mean the whole lot. I shall update my mental model ;-) |
new technique for 4.1.3 Status Messages
https://rawgit.com/w3c/wcag/tech-using-role-log/techniques/aria/aria-log-role.html
Links go to working examples which have a separate pull request #436