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
Currently I get an error for inputs with a type of range which seems unfixable. I might be missing something obvious but the following:
range
<label for="example-range">Example</label> <input id="example-range" name="range" type="range" min="0" max="100" step="1" value="100"/>
errors with:
This range input element does not have a name available to an accessibility API. Valid names are: element content
But if I switch to a text input with near-identical markup, I get no error:
text
<label for="example-text">Example</label> <input id="example-text" name="text" type="text" value="100"/>
The text was updated successfully, but these errors were encountered:
5388657
Looks like the color element might need to be added too?
Sorry, something went wrong.
d70828e
Added 'range' to the list of input types that are tested for labels. …
68e2a2b
…This resolves squizlabs#210
Added color to the input type list. This resolves squizlabs#210.
5584212
ironikart
No branches or pull requests
Currently I get an error for inputs with a type of
range
which seems unfixable. I might be missing something obvious but the following:errors with:
But if I switch to a
text
input with near-identical markup, I get no error:The text was updated successfully, but these errors were encountered: