footer
element testfooter
element,
sectioning content/root is body
<footer id="footer1"><code>footer</code> element</footer>
footer
element,
sectioning content/root is not body
<article>
<footer>
<code>footer</code> element inside <code>article</code>
</footer>
</article>
footer
with aria-label
<article>
<footer aria-label="aria-label attribute">
<p><code>aria-label</code> should be used as accessible name.</p>
<p>No accessible description.</p>
</footer>
</article>
footer
with aria-labelledby
<article>
<footer aria-labelledby="ft-004-labelledby">
<small id="ft-004-labelledby">small referenced by aria-labelledby</small>
<p><code>aria-labelledby</code> should be used as accessible name.</p>
<p>No accessible description.</p>
</footer>
</article>
footer
with title
attribute.
<article>
<footer title="title attribute">
<p><code>title</code> should be used as accessible name.</p>
<p>No accessible description.</p>
</footer>
</article>
footer
with aria-describedby
<article>
<footer aria-describedby="ft-006-describedby">
<small id="ft-006-describedby">
<code>small</code> referenced by <code>aria-describedby</code>
</small>
<p>
<code>aria-describedby</code> should be used as accessible description.
</p>
<p>No accessible name.</p>
</footer>
</article>
footer
with aria-label
& title
attributes
<article>
<footer aria-label="aria-label attribute" title="title attribute">
<p><code>aria-label</code> should be used as accessible name.</p>
<p><code>title</code> should be used as accessible description.</p>
</footer>
</article>