From ce5017843036151d545fba76062655fda69eac62 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Fri, 18 Sep 2015 11:19:59 -0400 Subject: [PATCH] Autocomplete: Use a `div` instead of a `span` for the live region Fixes #14587 --- ui/widgets/autocomplete.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/widgets/autocomplete.js b/ui/widgets/autocomplete.js index 1ebd6ed7a..4067f871f 100644 --- a/ui/widgets/autocomplete.js +++ b/ui/widgets/autocomplete.js @@ -329,7 +329,7 @@ $.widget( "ui.autocomplete", { } } ); - this.liveRegion = $( "", { + this.liveRegion = $( "
", { role: "status", "aria-live": "assertive", "aria-relevant": "additions" -- 2.39.5