From 0af77c244fc124ee614d89c07edc6a1a8df8357c Mon Sep 17 00:00:00 2001
From: webchick <webchick@24967.no-reply.drupal.org>
Date: Tue, 29 Jan 2013 20:19:31 -0800
Subject: [PATCH] Issue #1333292 by mgifford: Fixed Screen-reader users receive
 no info about file upload status / success.

---
 core/modules/file/file.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/modules/file/file.js b/core/modules/file/file.js
index ad147d17ffdf..b7289784fa49 100644
--- a/core/modules/file/file.js
+++ b/core/modules/file/file.js
@@ -99,7 +99,7 @@ Drupal.file = Drupal.file || {
           '%filename': this.value.replace('C:\\fakepath\\', ''),
           '%extensions': extensionPattern.replace(/\|/g, ', ')
         });
-        $(this).closest('div.form-managed-file').prepend('<div class="messages error file-upload-js-error">' + error + '</div>');
+        $(this).closest('div.form-managed-file').prepend('<div class="messages error file-upload-js-error" aria-live="polite">' + error + '</div>');
         this.value = '';
       }
     }
-- 
GitLab