We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b95fa2 commit e0420b4Copy full SHA for e0420b4
GitHubA11yFixes.user.js
@@ -108,8 +108,8 @@ function onNodeAdded(target) {
108
elem.setAttribute("role", "table");
109
for (elem of target.querySelectorAll(".table-list-item,.Box-body-row,.Box-row"))
110
elem.setAttribute("role", "row");
111
- for (elem of target.querySelectorAll(".d-table")) {
112
- // There's one of these inside every .Box-body-row.
+ for (elem of target.querySelectorAll(".Box-body-row,.Box-row .d-table")) {
+ // There's one of these inside every .Box-body-row/Box-row.
113
// It's purely presentational.
114
elem.setAttribute("role", "presentation");
115
// Its children are the cells, but they have no common class.
0 commit comments