chromium/content/test/data/accessibility/aria/aria-owns.html

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