New issue
Advanced search Search tips

Issue 675497 link

Starred by 2 users

Issue metadata

Status: WontFix
Owner: ----
Closed: Dec 2016
Components:
EstimatedDays: ----
NextAction: ----
OS: Chrome
Pri: 2
Type: Bug
Team-Accessibility



Sign in to add a comment

Chromevox Next Does Not Read the Clickable Item on This Page

Reported by irismp...@gmail.com, Dec 19 2016

Issue description

Mode: force_next
Version: 57.0.2951.0
Reproduction Steps: 
1. Fill out the information according to the fields in this form.
2. Tab over to the "Terms of Service".
3. There's no way to proceed and accept the terms of service.


 
Labels: Needs-Feedback
can you please update the link to the page or form you are using?

Comment 2 by irismp...@gmail.com, Dec 21 2016

Yess, sorry. The webpage is at: work.onespace.com. Click on the "Sign Up" tab, and it should take you right to the form.
Status: WontFix (was: Unconfirmed)
This is a bug in the site, there's nothing we can do about it.

Here's the code for the checkbox:

<div class="checkbox pull-left terms">
  <label>
    <input type="checkbox" id="termsofservice" name="termsofservice" value="">
    Accept our <span class="custom-checkboxer"></span>
  </label>
  <a href="http://www.onespace.com/terms-of-service/" target="_blank" class="small thick">
    Terms of Service
  </a>
</div>

It looks like the <input type=checkbox"> ought to be accessible, but the computed CSS style is "display:none". That effectively removes it from the page. I think this was an attempt by the author to style the checkbox while still using an input element, but unfortunately display:none is not a valid way to do this.

Note, for example, that you can't even check the box with the keyboard alone even if you're sighted. So it's not a ChromeVox bug, it's an author error.

Sign in to add a comment