The validation from w3c is throwing an Error with the following part in the common.py:
_opener_markup_template = (
u'<input id="navitem-{uid}" type="checkbox" class="opener" />'
u'<label for="navitem-{uid}" role="button" aria-label="{title}"></label>' # noqa: E 501
)
The Error says:
Error: Attribute role not allowed on element label at this point.
Is there any use for this "role" in the label? If not, I would fix this.
The validation from w3c is throwing an Error with the following part in the common.py:
The Error says:
Error: Attribute role not allowed on element label at this point.Is there any use for this "role" in the label? If not, I would fix this.