Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcaustin2011-11-11 17:51:53 +0000
committercaustin2011-11-11 17:51:53 +0000
commitd1a2507aca888046af1008ae59d1b5b20f5b0122 (patch)
tree98ee67baa8ce3faee4138bbae345de46e001cfa6 /org.eclipse.help.webapp
parent7b0a5df13b287c981e82e97e41f6efc7844c2c40 (diff)
downloadeclipse.platform.ua-d1a2507aca888046af1008ae59d1b5b20f5b0122.tar.gz
eclipse.platform.ua-d1a2507aca888046af1008ae59d1b5b20f5b0122.tar.xz
eclipse.platform.ua-d1a2507aca888046af1008ae59d1b5b20f5b0122.zip
Bug 362369 - [Accessibility] Search this topic hover over box in TOC
does not contain alt text and violates w3c guidelines.
Diffstat (limited to 'org.eclipse.help.webapp')
-rw-r--r--org.eclipse.help.webapp/advanced/toolbar.jsp1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.help.webapp/advanced/toolbar.jsp b/org.eclipse.help.webapp/advanced/toolbar.jsp
index 4723436f5..655f31626 100644
--- a/org.eclipse.help.webapp/advanced/toolbar.jsp
+++ b/org.eclipse.help.webapp/advanced/toolbar.jsp
@@ -328,6 +328,7 @@ function menu(button, param) {
var properties = entries[i].split("=");
var anchor = doc.createElement("a");
var text = doc.createTextNode(properties[0]);
+ anchor.title = properties[0];
anchor.appendChild(text);
anchor.href = "javascript:parent.frames[0].closeMenu(),parent.frames[0]." + properties[1];
anchor.target = "_self";

Back to the top