We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6cfd9e commit 69535eeCopy full SHA for 69535ee
1 file changed
ReviewBoardA11yFixes.user.js
@@ -23,7 +23,7 @@ function tweakSideBySide(side) {
23
elem.setAttribute("role", "cell");
24
25
// For changed lines, prefix the right hand line number with off-screen text indicating the type of change.
26
- for (var tbody of side.querySelectorAll("tbody.insert,tbody.replace")) {
+ for (var tbody of side.querySelectorAll("tbody.insert,tbody.replace,tbody.delete")) {
27
for (var th of tbody.querySelectorAll("tr th:nth-child(3)"))
28
th.innerHTML = '<span style="position: absolute; left: -10000px;">' + tbody.className + '</span> ' + th.innerHTML;
29
}
0 commit comments