html5/markup/src attributes.html,1.3,1.4 references.html,1.11,1.12

Update of /sources/public/html5/markup/src
In directory hutz:/tmp/cvs-serv6403/src

Modified Files:
	attributes.html references.html 
Log Message:
added descriptions for global attributes that were missing them


Index: references.html
===================================================================
RCS file: /sources/public/html5/markup/src/references.html,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- references.html	30 Jul 2009 07:44:13 -0000	1.11
+++ references.html	31 Jul 2009 19:54:04 -0000	1.12
@@ -14,6 +14,10 @@
           >Unicode Technical Report #26: Compatibility Encoding
           Scheme for UTF-16: 8-bit (CESU-8)</a></cite>.
       Toby Phipps. 16 April 2002.</dd>
+    <dt><dfn id="refsCSS">[CSS]</dfn></dt>
+    <dd><cite><a href="http://www.w3.org/TR/2008/WD-css-beijing-20080516/"
+          >Cascading Style Sheets (CSS) Snapshot 2007</a></cite>.
+      Elika J. Etemad. W3C Working Draft. 16 May 2008.</dd>
     <dt><dfn id="refsDOM2VIEWS">[DOM2VIEWS]</dfn></dt>
     <dd><cite><a
           href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Views-20001113/"
@@ -102,16 +106,17 @@
     <dd><cite><a href="http://www.w3.org/TR/2006/REC-xml-20060816/"
           >Extensible Markup Language (XML) 1.0 (Fourth
           Edition)</a></cite>. Tim Bray, Jean Paoli, C. M.
-      Sperberg-McQueen, Eve Maler, François Yergeau. 16 August 2006.</dd>
+      Sperberg-McQueen, Eve Maler, François Yergeau.
+      W3C Recommendation. 16 August 2006.</dd>
     <dt><dfn id="refsXMLBase">[XMLBase]</dfn></dt>
     <dd><cite><a href="http://www.w3.org/TR/2009/REC-xmlbase-20090128/"
           >XML Base (Second Edition)</a></cite>.
-      Jonathan Marsh, Richard Tobin. 28 January 2009.</dd>
+      Jonathan Marsh, Richard Tobin. W3C Recommendation.
+      28 January 2009.</dd>
     <dt><dfn id="refsXML">[XMLNS]</dfn></dt>
     <dd><cite><a href="http://www.w3.org/TR/2006/REC-xml-names-20060816/"
           >Namespaces in XML 1.0 (Second Edition)</a></cite>.
       Tim Bray, Dave Hollander, Andrew Layman, Richard Tobin.
-      16 August 2006.
-    </dd>
+      W3C Recommendation. 16 August 2006.</dd>
   </dl>
 </section>

Index: attributes.html
===================================================================
RCS file: /sources/public/html5/markup/src/attributes.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- attributes.html	30 Jul 2009 07:44:13 -0000	1.3
+++ attributes.html	31 Jul 2009 19:54:04 -0000	1.4
@@ -1,21 +1,85 @@
 <section id="syntax"
   xmlns="http://www.w3.org/1999/xhtml">
   <h2>Common/shared attribute definitions</h2>
-  <div id="basic-attrs">
+  <div id="core-attrs">
     <dl>
       <dt id="common.attrs.id">id</dt>
       <dd>A unique identifier for the element.</dd>
     </dl>
     <dl>
       <dt id="common.attrs.class">class</dt>
-      <dd>A list of one or more classifications to which the
-        element belongs.</dd>
+      <dd>A name of a classification, or list of names of
+        classifications, to which the element belongs.</dd>
     </dl>
     <dl>
       <dt id="common.attrs.title">title</dt>
       <dd>Advisory information associated with the element.</dd>
     </dl>
     <dl>
+      <dt id="common.attrs.accesskey">accesskey</dt>
+      <dd>A key label or list of key labels with which to
+        associate the element; each key label represents a
+        keyboard shortcut which UAs can use to activate the
+        element or give focus to the element.</dd>
+    </dl>
+    <dl>
+      <dt id="common.attrs.contenteditable">contenteditable</dt>
+      <dd>Specifies whether the
+        <a href="#contents">contents</a>
+        of the element are editable.</dd>
+    </dl>
+    <dl>
+      <dt id="common.attrs.contextmenu">contextmenu</dt>
+      <dd>Specifies a
+        <a href="#menu" class="element">menu</a>
+        with which to associate the element as a
+        <dfn
+          id="context-menu"
+          title="context-menu"
+          >context menu</dfn>.</dd>
+    </dl>
+    <dl>
+      <dt id="common.attrs.dir">dir</dt>
+      <dd>Specifies the element’s text directionality.</dd>
+    </dl>
+    <dl>
+      <dt id="common.attrs.draggable">draggable</dt>
+      <dd>Specifies whether the element is draggable.</dd>
+    </dl>
+    <dl>
+      <dt id="common.attrs.hidden">hidden</dt>
+      <dd>Specifies that the element represents an element that is
+        not yet, or is no longer, relevant.</dd>
+    </dl>
+    <dl>
+      <dt id="common.attrs.lang">lang</dt>
+      <dd>Specifies the primary language for the
+        <a href="#contents">contents</a>
+        of the element and for any of the element’s attributes
+        that contain text.</dd>
+    </dl>
+    <dl>
+      <dt id="common.attrs.spellcheck">spellcheck</dt>
+      <dd>Specifies whether the element represents
+        an element whose
+        <a href="#contents">contents</a>
+        are subject to spell checking and grammar checking.</dd>
+    </dl>
+    <dl>
+      <dt id="common.attrs.style">style</dt>
+      <dd>Specifies zero or more CSS declarations that apply to
+        the element
+        <a href="#refsCSS">[CSS]</a>.</dd>
+    </dl>
+    <dl>
+      <dt id="common.attrs.tabindex">tabindex</dt>
+      <dd>Specifies whether the element represents an element that
+        is is focusable (that is, an element which is part of the
+        sequence of focusable elements in the document), and the
+        relative order of the element in the sequence of focusable
+        elements in the document.</dd>
+    </dl>
+    <dl>
       <dt id="common.attrs.xmlbase">xml:base</dt>
       <dd>As defined in the XML Base specification
         <a href="#refsXMLBase">[XMLBase]</a>.</dd>

Received on Friday, 31 July 2009 19:54:16 UTC