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

content / test / data / accessibility / aria / dpub-roles-computed.html [blame]

<style>
li {list-style-type: none;}
</style>
<!-- A list item inside of a doc-bibliography is treated the same as the deprecated doc-biblioentry -->
<div role="doc-bibliography">
  <div role="list">
    <div role="listitem">biblioentry</div>
    <div role="list">
      <div role="listitem">not a biblioentry</div>
    </div>
  </div>
  <ul>
    <li>biblioentry</li>
  </ul>
</div>

<!-- A list item inside of a doc-endnotes is treated the same as the deprecated doc-endnote -->
<div role="doc-endnotes">
  <div role="list">
    <div role="listitem">endnote</div>
    <div role="list">
      <div role="listitem">not an endnote</div>
    </div>
  </div>
  <ul>
    <li>endnote</li>
  </ul>
</div>