1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15

content / test / data / accessibility / aria / aria-label-with-tabindex.html [blame]

<html>
<body>

<section aria-label="test-label" tabindex="-1">
  <h3>Test</h3>
  <p>This is test content within a section, tab index negative 1. I am missing on Android.</p>
</section>

<section aria-label="test-label-2">
  <h3>Test</h3>
  <p>This is test content within a section, no tab index.</p>
</section>

</body>
</html>