You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran my pages using axe checker and it seems to fail on empty tables:
<table><thead><tr><th>Product</th><th>Amount</th><th>Price</th></tr></tbody><tbody><tr><tdcolspan="3">No available products to display</td></tr></thead></table>
Note on the bug: It seems our getHeaders and getCellPosition functions do not take into account row/col-span. So when we look at the cells for the 2nd and 3rd headers and ask what the header of those cells are, it only returns the first header and not the other 2, so we fail saying that the cell points to a different header.
I ran my pages using axe checker and it seems to fail on empty tables:
Live demo https://jsbin.com/pewali
Expectation: axe handles this table and does not report
incomplete
checksActual: axe stumbles on this table and reports
incomplete
checkMotivation: Incomplete checks still require attention and should not give false-negatives
The text was updated successfully, but these errors were encountered: