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
   30
   31

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

<html>
  <body>
    <ul aria-owns="two four">
      <!-- Marker will end in a space: "One" is on the same line. -->
      <li>
        <div>One</div>
      </li>
    </ul>

    <div>
      <!-- Marker's space is collapsed: "Two" is not on the same line. -->
      <li id="two">
        <div>Two</div>
      </li>
    </div>

    <div>
      <!-- Marker's space is collapsed: "Three" is not on the same line. -->
      <li id="three">
        <div>Three</div>
      </li>
    </div>

    <div>
      <!-- This marker will have a space: "Four" is on the same line. -->
      <li id="four">
        <div style="display:inline;">Four</div>
      </li>
    </div>
  </body>
</html>