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

content / test / data / accessibility / aria / aria-article-posinset-setsize.html [blame]

<!--
@BLINK-ALLOW:setSize*
@BLINK-ALLOW:posInSet*
-->
<html>
<body>
<!-- This article should have posinset and setsize of 0, since it is -->
<!-- not contained within a feed. -->
<div role="article"> ARIA Articles outside of feeds should have PosInSet and
SetSize of 0.
</div>

<!-- These articles should have posinset and setsize. The feed should also
report as setsize of 5. -->
<div role="feed">
  <div role="article" aria-posinset="4" aria-setsize="5"></div>
  <div role="article" aria-posinset="5" aria-setsize="5"></div>
</div>
</body>
</html>