html5/html-api-map overview.html,1.18,1.19

Update of /sources/public/html5/html-api-map
In directory hutz:/tmp/cvs-serv31400

Modified Files:
	overview.html 
Log Message:
fixed scrolling and added to accessible name calculation

Index: overview.html
===================================================================
RCS file: /sources/public/html5/html-api-map/overview.html,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- overview.html	25 Jan 2011 17:17:43 -0000	1.18
+++ overview.html	1 Feb 2011 12:55:53 -0000	1.19
@@ -10,7 +10,6 @@
 }
 table {
     width:100%;
-    overflow: auto;
     border-collapse: collapse;
     border: 1px solid #630;
     font: normal 80% arial, Verdana, helvetica, sans-serif;
@@ -53,7 +52,7 @@
 	<BODY>
 	<H1>HTML to Platform Accessibility APIs Implementation Guide</H1>
 	<h2 id="subhead">A user agent developer's guide to understanding and implementing	accessibility support in HTML</h2>
[...1105 lines suppressed...]
-            <td><code><A href="http://dev.w3.org/html5/spec/text-level-semantics.html#the-wbr-element">wbr</A></code> element</td>
           </TR>
       </TBODY></TABLE>
     </div>
@@ -2879,11 +2740,12 @@
       </tr>
     </table>
 	<H2>&nbsp;</H2>
-	<H2>Accessible Name calculation</H2>
+	<H2>Accessible Name and Description calculation</H2>
 	<H2 class="note">to do</H2>
 	<h3>Form elements that can have a placeholder attribute</h3>
-	<p>If the control has a <code>placeholder</code> attibute but does not have an associated <code>label</code> element or a <code>title</code> attribute, use the content of the <code>placeholder</code> attribute as the controls accessible name.</p>
-	<p>If the control has a <code>placeholder</code> attibute and an associated <code>label</code> element, but not a <code>title</code> attribute, use the content of the associated <code>label</code> element as the controls accessible name.</p>
+	<p>If the control has a non-empty <code>placeholder</code> attibute but does not have a non-empty associated <code>label</code> element or a non-empty<code> title</code> attribute, use the content of the <code>placeholder</code> attribute as the controls accessible name.</p>
+	<p>If the control has a non-empty <code>placeholder</code> attibute and a non-empty associated <code>label</code> element, but not a <code>title</code> attribute, use the content of the associated <code>label</code> element as the controls accessible name. Use the content of the placeholder attribute as the controls accessible description.</p>
+	<p>If the control has a non-empty <code>placeholder</code> attribute and a non-empty title attribute, but not an associated non-empty<code> label</code> element, use the content of the<code> title</code> attribute as the controls accessible name. Use the content of the <code>placeholder</code> attribute as the controls accessible description.</p>
 	<p><span class="note">to do</span></p>
 	<h3>Other form elements</h3>
 	<p><span class="note">to do</span></p>

Received on Tuesday, 1 February 2011 12:55:57 UTC