We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c47bd8 commit 42c8ba9Copy full SHA for 42c8ba9
BugzillaA11yFixes.user.js
@@ -28,6 +28,10 @@ function tweak() {
28
// Comment numbers.
29
for (elem of document.getElementsByClassName("bz_comment_number"))
30
makeHeading(elem, 2);
31
+
32
+ // Label user images.
33
+ for (elem of document.querySelectorAll("span.bz_comment_user a img"))
34
+ elem.setAttribute("alt", "User image");
35
}
36
37
tweak();
0 commit comments