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

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

<!--
@BLINK-DENY:descriptionFrom*
@WIN-DENY:description*
@WIN-ALLOW:description=*
-->

<!DOCTYPE html>
<html>
<style>
  .hide {
    visibility: hidden;
  }
</style>
<body>
  <div>
    <span class="hide" aria-description="a1">
      <span aria-description="a2"></span>
    </span>

    <span aria-description="b"></span>
    <span aria-description="c"></span>
  </div>
</body>
</html>