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

content / test / data / accessibility / aria / aria-owns-list.html [blame]

<!--
@MAC-ALLOW:AXSize={w: 400, h: *}
@BLINK-ALLOW:pageSize=(400*
-->
<html>
  <body>
    <style>
      [role="listitem"] {
        width: 400px;
        height: 200px;
      }
    </style>
    <div role="list" aria-owns="one two"></div>
    <div id="one" role="listitem">One</div>
    <div id="two" role="listitem">Two</div>
  </body>
</html>