Merged
Conversation
Contributor
Author
|
Questions on this:
|
jessieay
commented
Nov 29, 2016
Contributor
Author
There was a problem hiding this comment.
should this be a fieldsetor legend instead? see https://dequeuniversity.com/rules/axe/2.0/radiogroup?application=axeAPI
jessieay
commented
Nov 29, 2016
app/views/idv/sessions/new.html.slim
Outdated
Contributor
Author
There was a problem hiding this comment.
there is no label-ssn id on the page, so this is an invalid aria-labelledby attr
**Why**: * 508 compliance * For radio buttons, was getting error: "Radio inputs with the same name attribute value must be part of a group" * Ref: https://dequeuniversity.com/rules/axe/2.0/radiogroup * For other form, there was an invalid aria attr (did not correspond to an `id` in the markup)
0109df0 to
665bb74
Compare
jessieay
commented
Nov 30, 2016
| .sm-right-align { text-align: right; } | ||
| } | ||
|
|
||
| .sr-only { |
Contributor
Author
There was a problem hiding this comment.
I added this per recs in https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
is this the best place to put this? cc @brendansudol
Contributor
There was a problem hiding this comment.
@jessieay basscss already has a similar class - checkout accessible hide here: http://basscss.com/#basscss-hide
Contributor
Author
**Why**: Hide is accessible!
Contributor
Author
|
@hursey013 updated at 2f1cece |
Contributor
Author
|
@hursey013 re-review? |
amoose
pushed a commit
that referenced
this pull request
Feb 24, 2017
**Why**: * 508 compliance * For radio buttons, was getting error: "Radio inputs with the same name attribute value must be part of a group" * Ref: https://dequeuniversity.com/rules/axe/2.0/radiogroup * For other form, there was an invalid aria attr (did not correspond to an `id` in the markup)
amoose
pushed a commit
that referenced
this pull request
Feb 28, 2017
**Why**: * 508 compliance * For radio buttons, was getting error: "Radio inputs with the same name attribute value must be part of a group" * Ref: https://dequeuniversity.com/rules/axe/2.0/radiogroup * For other form, there was an invalid aria attr (did not correspond to an `id` in the markup)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Why:
"Radio inputs with the same name attribute value must be part of a
group"
to an
idin the markup)