Forum How do I...?

Support for aria-owns

spawlik
I have an ordered list that spans pages with header and footer sections in-between and need to make it ADA compliant. The use of "aria-owns" works in a browser, but it does not seem to generate the tags correctly in a PDF converted with Prince (v16 WIN)

Here is basic sample of the syntax:

<section>
<ol id="list-a" aria-owns="li1 li2 li3 li4 li5 li6">
<li id="li1">Item 1</li>
<li id="li2">Item 2</li>
<li id="li3">Item 3</li>
</ol>
</section>
<section>
<ol style="list-style: none;" start="4">
<li id="li4">Item 4</li>
<li id="li5">Item 5</li>
<li id="li6">Item 6</li>
</ol>
</section>