Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.help.base/doc/help_home.html2
-rw-r--r--org.eclipse.help.webapp/advanced/tabs.jsp8
-rw-r--r--org.eclipse.help.webapp/advanced/toolbar.jsp2
3 files changed, 7 insertions, 5 deletions
diff --git a/org.eclipse.help.base/doc/help_home.html b/org.eclipse.help.base/doc/help_home.html
index ae61ef6f3..87dca563a 100644
--- a/org.eclipse.help.base/doc/help_home.html
+++ b/org.eclipse.help.base/doc/help_home.html
@@ -9,7 +9,7 @@
</head>
<body>
-<div id="content">
+<div id="content" role="main">
<h1>Using the help system</h1>
<p>
diff --git a/org.eclipse.help.webapp/advanced/tabs.jsp b/org.eclipse.help.webapp/advanced/tabs.jsp
index 077bf5eec..09a356206 100644
--- a/org.eclipse.help.webapp/advanced/tabs.jsp
+++ b/org.eclipse.help.webapp/advanced/tabs.jsp
@@ -254,8 +254,10 @@ function getPreviousLink(currentLink){
</script>
</head>
+
<body dir="<%=direction%>" onload="showTab('<%=data.getVisibleView()%>')">
- <table id="tab-container" role="tablist" cellspacing="0" cellpadding="0" border="0" width="100%" height="100%" valign="middle">
+
+ <table cellspacing="0" cellpadding="0" border="0" width="100%" height="100%" valign="middle">
<tr>
<%
@@ -273,8 +275,7 @@ function getPreviousLink(currentLink){
<td title="<%=UrlUtil.htmlEncode(title)%>"
align="center"
valign="middle"
- class="tab"
- role="tab"
+ class="tab"
id="<%=views[i].getName()%>"
onclick="parent.showView('<%=views[i].getName()%>')"
onmouseover="window.status='<%=UrlUtil.JavaScriptEncode(title)%>';return true;"
@@ -300,6 +301,7 @@ function getPreviousLink(currentLink){
</tr>
</table>
+
</body>
</html>
diff --git a/org.eclipse.help.webapp/advanced/toolbar.jsp b/org.eclipse.help.webapp/advanced/toolbar.jsp
index 551ffc7da..a3fc3af50 100644
--- a/org.eclipse.help.webapp/advanced/toolbar.jsp
+++ b/org.eclipse.help.webapp/advanced/toolbar.jsp
@@ -449,7 +449,7 @@ if(buttons.length > 0){
}
%>
-<table role="toolbar" id="container" width="100%" border="0" cellspacing="0" cellpadding="0" height="100%" style='padding-<%=isRTL?"right":"left"%>:<%=data.isIE()?"5px":"8px"%>;'>
+<table id="container" width="100%" border="0" cellspacing="0" cellpadding="0" height="100%" style='padding-<%=isRTL?"right":"left"%>:<%=data.isIE()?"5px":"8px"%>;'>
<tr>
<td nowrap style="font: <%=prefs.getToolbarFont()%>" valign="middle">

Back to the top