See also: T49936, T53562, T32597; And related T12467, T13555.
How it looks now:
<div id="footer" role="contentinfo">
<ul id="footer-info">
<li id="footer-info-lastmod"> … </li>
<li id="footer-info-copyright"> … </li>
</ul>
<ul id="footer-places"> … </ul>
<ul id="footer-icons" class="noprint"> … </ul>
<div style="clear:both"></div>
</div>How it should:
<footer id="footer" role="contentinfo">
<ul id="footer-info">
<li id="footer-info-lastmod"> … </li>
<li id="footer-info-copyright"> … </li>
</ul>
<ul id="footer-places"> … </ul>
<ul id="footer-icons" class="noprint"> … </ul>
<div style="clear:both"></div>
</footer>See its specification on https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer.