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
Table data cell: Check that each data cell uses only one of the following methods
<table role="table"> must use aria cell, row, header roles in steps 3 and 4.
<table role="table">
The text was updated successfully, but these errors were encountered:
For reference: https://www.w3.org/TR/html-aria/#docconformance
Sorry, something went wrong.
Explicit role=table requires the supporting roles for row, header, etc.
role=table
<table role="table"> is not a failure, but because an explicit role for table has been defined, child table elements must have explicit roles defined.
also add that a cell's assigned header ID values must be within the same table as the cell
<table role="grid">
<td role="cell">
drewnielson
Successfully merging a pull request may close this issue.
Table data cell: Check that each data cell uses only one of the following methods
<table role="table">
must use aria cell, row, header roles in steps 3 and 4.The text was updated successfully, but these errors were encountered: