MDL-81608 core: Add alt text to the YUI spinner image

The accessibility Behat test added to the quiz editing page uncovered
that the loading spinner icon does not have an appropriate alt text.
This commit is contained in:
Jun Pataleta
2026-03-10 17:58:57 +08:00
parent f2f26105d5
commit 9596fe1a83
+1
View File
@@ -826,6 +826,7 @@ M.util.add_spinner = function(Y, node) {
var spinner = Y.Node.create('<img />')
.setAttribute('src', M.util.image_url(WAITICON.pix, WAITICON.component))
.setAttribute('alt', M.util.get_string('loading', 'core'))
.addClass('spinner icon')
.hide();