-
Bug
-
Resolution: Fixed
-
Minor
-
1.9.17, 2.2.2
-
Any
-
MOODLE_19_STABLE, MOODLE_22_STABLE
-
MOODLE_22_STABLE, MOODLE_23_STABLE
-
MDL-31976-master -
Editing links, such as 'editing_show' have a title e.g. "Show" which is shown on hover, and read by screen readers.
The images (class="iconsmall") within these links also have alt text and titles e.g. "Show" - which is also shown on hover (some browsers) and read by screen readers.
The title attribute should only be applied to the link element. The alt text and title on the icon are unnecessary.
When users of screen readers encounter this they hear "Show show", "Delete delete", "Move move", etc...
These links should only have the title attrib in the link, and no title or alt on the icon.
e.g.
<a href='foo' class='editing_delete' title='Delete'>
<img src='path/delete.gif' alt='' />
Delete
</a>
An even cleaner solution would be :
<a href='foo' class='editing_show' title='Publish <resource title> to course'>Show</a>
then with css :
.commands a
.editing_show
{ background: transparent url('path/show.gif') etc...}- blocks
-
CONTRIB-3915 Can't add activities or resources to OU Module: subpage
-
- Open
-
- caused a regression
-
MDL-35634 Restore alt attribute containing module name on activity icons
-
- Closed
-
- has been marked as being related by
-
MDL-35884 Add activity or resource plus icon has same alt text as span
-
- Closed
-