We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There's a mismatch between the rule applicability, the rule example wording and the HTML spec:
td
th
role=rowheader
role=columnheader
Each target's attribute value is a set of space separated tokens. Each token is the value of the id attribute of an element, that is a cell of the same table.
https://act-rules.github.io/rules/a25f45#expectation-1
The HTML living standard requires headers to reference th elements
headers
The headers attribute, if specified, must contain a string consisting of an unordered set of unique space-separated tokens, none of which are identical to another token and each of which must have the value of an ID of a th element taking part in the same table as the td or th element (as defined by the table model).
The rule examples suggest that role=rowheader or role=columnheader is relevant to passing or failing the rule:
https://act-rules.github.io/rules/a25f45#passed-example-5 https://act-rules.github.io/rules/a25f45#failed-example-4
The text was updated successfully, but these errors were encountered:
tombrunet
Successfully merging a pull request may close this issue.
There's a mismatch between the rule applicability, the rule example wording and the HTML spec:
td
orth
elements (cells, as defined by the HTML Standard)role=rowheader
orrole=columnheader
is cause of pass/fail, but these aren't relevant to the rule applicabilityth
elementsRule Applicability
https://act-rules.github.io/rules/a25f45#expectation-1
HTML Standard
The HTML living standard requires
headers
to referenceth
elementsRule Examples
The rule examples suggest that
role=rowheader
orrole=columnheader
is relevant to passing or failing the rule:https://act-rules.github.io/rules/a25f45#passed-example-5
https://act-rules.github.io/rules/a25f45#failed-example-4
The text was updated successfully, but these errors were encountered: