1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29

content / test / data / accessibility / aria / hidden-labelled-by.html [blame]

<!--
@UIA-WIN-ALLOW:Label*
@BLINK-ALLOW:label*
@WIN-ALLOW:label*
-->
<!DOCTYPE html>
<html>
<style>
  .hide {
    visibility: hidden;
  }
  .visible {
    visibility: visible;
  }
</style>
<body>
  <div>
    <span class="hide" aria-label="span-A1">
      <span aria-label="span-A2" id="a2"></span>
      <span role="group" class="visible" aria-label="span-A3" aria-labelledby="a4">
        <span class="hide" aria-label="span-A4" id="a4"></span>
      </span>
    </span>

    <span role="group" aria-label="span-B" aria-labelledby="a2"></span>
    <span aria-label="span-C"></span>
  </div>
</body>
</html>