Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLakshmi Shanmugam2020-02-06 06:19:06 +0000
committerLakshmi Shanmugam2020-02-06 06:19:06 +0000
commit403b7ce270e2f3874f924dd30710127a9c9456cc (patch)
tree56c62e992e022d0ca7d1dd16e3a50680314683c8
parent5d8c6ed6887db4f3ba645355c4dd7f58e60e89a7 (diff)
downloadeclipse.platform.ua-403b7ce270e2f3874f924dd30710127a9c9456cc.tar.gz
eclipse.platform.ua-403b7ce270e2f3874f924dd30710127a9c9456cc.tar.xz
eclipse.platform.ua-403b7ce270e2f3874f924dd30710127a9c9456cc.zip
Bug 559489 - [Accessibility] Element with an WAI-ARIA 'application' roleI20200206-1805
does not have a label specified with aria-label or aria-labelledby Added aria-label to div with application role Change-Id: I0bfe637fea2a4ab5f5a211ca31fead9699faf976
-rw-r--r--org.eclipse.help.webapp/advanced/indexView.jsp2
-rw-r--r--org.eclipse.help.webapp/advanced/tocView.jsp2
2 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.help.webapp/advanced/indexView.jsp b/org.eclipse.help.webapp/advanced/indexView.jsp
index 56ff9bb8b..e6036dd4a 100644
--- a/org.eclipse.help.webapp/advanced/indexView.jsp
+++ b/org.eclipse.help.webapp/advanced/indexView.jsp
@@ -93,7 +93,7 @@ var loadingMessage = "<%=UrlUtil.JavaScriptEncode(ServletResources.getString("Lo
</table>
<div id = "indexList">
-<DIV class = "group" id = "wai_application">
+<DIV class = "group" id = "wai_application" aria-label = "Index search results">
<DIV class = "root" aria-label = "Search results" id = "tree_root">
</DIV>
</DIV>
diff --git a/org.eclipse.help.webapp/advanced/tocView.jsp b/org.eclipse.help.webapp/advanced/tocView.jsp
index c5ad0682e..a3f1ee771 100644
--- a/org.eclipse.help.webapp/advanced/tocView.jsp
+++ b/org.eclipse.help.webapp/advanced/tocView.jsp
@@ -146,7 +146,7 @@ if (requestData.isIE()){
}
%>
- <DIV class = "group" id = "wai_application">
+ <DIV class = "group" id = "wai_application" aria-label = "Table of contents container">
<DIV class = "root" aria-label = "Table of contents" id = "tree_root">
</DIV>
</DIV>

Back to the top