0

I have one form which has scrollbar associated with it . page reads properly element by element but focus does not move with voiceover.

I am testing this html form in iphone 5 with ios 8.1.

Priya
  • 1,453
  • 4
  • 29
  • 55

1 Answers1

1

The focus only moves to elements that are tab focusable. These are elements like links, buttons and input fields or elements that have an explicit tabindex attribute greater than or equal to 0. Voiceover and other screen readers will read out intervening text, but leave the focus on the most recently visited focusable element until the next focusable element is encountered, at which point the focus will jump to that element as it gets read out. This is the way it should work and there is nothing "wrong" with this behavior.

unobf
  • 7,158
  • 1
  • 23
  • 36