- From: Kerstin Goldsmith <kerstin.goldsmith@oracle.com>
- Date: Tue, 17 Aug 2004 17:43:39 -0700
- To: "WAI GL (E-mail)" <w3c-wai-gl@w3.org>
- Message-ID: <4122A63B.8010907@oracle.com>
Guys, I see some reference to footers in WCAG 2.0, but can someone take a look at the attached two peices of code and let me know professional opinions about whether or not they present accessibility issues --- suggested fixes would be great, too. Thanks for any insight -- I can't quite figure this one out on my own .... -Kerstin
The HTML for an empty table with 'Add another row' footer is as follows-
<html>
<head>
<title>
Testing UIConstants.TEXT_ATTR + UIConstants.SECRET_ATTR
</title>
</head>
<body>
<script type="text/javascript"
src="/OA_HTML/cabo/jsLibs/Common2_2_12.js"></script>
<form id="TestForm" name="TestForm" style="margin:0px" method="GET"
action="/OA_HTML/table_uix.jsp">
<span id="FndPadTable">
<table cellpadding="0" cellspacing="0"
border="0" summary=""><tr>
<td><table class="x1h" cellpadding="1" cellspacing="0" border="0"
width="100%"><tr>
<th width="1%" nowrap class="x1t" style="word-break:keep-all"
id="M__Id">Select</th>
<th id="M__Ida" class="x1r x4j"><span class="x24">Simple
Text</span></th>
<th id="M__Idb" class="x1r x4j"><span
class="x24">Totalling</span></th>
</tr>
<tr><td class="x1p x4x" headers="M__Id"><br></td>
<td class="x1l x4x" headers="M__Ida"><br></td>
<td class="x1l x4x" headers="M__Idb"><br></td>
</tr>
<tr><td class="x1w" colspan="3"><script
type="text/javascript">var _tURL="/OA_HTML/cabo/images/t.gif";var
_axm=1;t(5,1)</script><a
href="/OA_HTML/table_uix.jsp?event=addRows&source=FndPadTable&size=1"><img
src="/OA_HTML/cabo/images/cache/en/bAdd_WHfy.gif"
alt="Add Another Row" border="0" align="middle"
width="113" height="18"></a></td></tr>
</table>
</td></tr></table>
</span><span id="FndPadTable-hv"></span><span
id="_TestForm_Postscript"><script
type="text/javascript">function
_TestFormValidater(form){return
true;}</script></span><script
type="text/javascript">_submitFormCheck();</script></form>
</body>
</html>
The HTML for a non empty table with footer is as follows-
<html>
<head>
<title>
Testing UIConstants.TEXT_ATTR + UIConstants.SECRET_ATTR
</title>
</head>
<body>
<script type="text/javascript"
src="/OA_HTML/cabo/jsLibs/Common2_2_12.js"></script><form id="TestForm"
name="TestForm" style="margin:0px" method="GET"
action="/OA_HTML/table_uix.jsp"><span id="FndPadTable"><table cellpadding="0"
cellspacing="0" border="0" summary=""><tr><td><table class="OraTableContent"
cellpadding="1" cellspacing="0" border="0" width="100%">
<tr><th width="1%" nowrap class="OraTableColumnHeaderIconButton"
style="word-break:keep-all" id="M__Id">Select</th>
<th id="M__Ida" class="OraTableColumnHeader OraTableBorder0001"><span
class="OraTableHeaderLink">Simple Text</span></th>
<th id="M__Idb" class="OraTableColumnHeader OraTableBorder0001"><span
class="OraTableHeaderLink">Totalling</span></th>
</tr><tr><td class="OraTableCellIconButton OraTableBorder1111"
headers="M__Id"><br></td><td class="OraTableCellText OraTableBorder1111"
headers="M__Ida"><br></td><td class="OraTableCellText OraTableBorder1111"
headers="M__Idb"><br></td></tr><tr><td class="OraTableColumnFooter"
colspan="3"><script type="text/javascript">var
_tURL="/OA_HTML/cabo/images/t.gif";var _axm=1;t(5,1)</script><a
href="/OA_HTML/table_uix.jsp?event=addRows&source=FndPadTable&size=1"><img
src="/OA_HTML/cabo/images/cache/en/bAdd_WHfy.gif" alt="Add Another Row"
border="0" align="middle" width="113"
height="18"></a></td></tr></table></td></tr></table></span><span
id="FndPadTable-hv"></span><span id="_TestForm_Postscript"><script
type="text/javascript">function _TestFormValidater(form){return
true;}</script></span><script
type="text/javascript">_submitFormCheck();</script></form>
</body>
</html>
Received on Wednesday, 18 August 2004 00:42:50 UTC