- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 30 Jul 2009 07:44:15 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/markup/src
In directory hutz:/tmp/cvs-serv10562/src
Modified Files:
attributes.html references.html
Log Message:
filled in descriptions for some global attributes
Index: references.html
===================================================================
RCS file: /sources/public/html5/markup/src/references.html,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- references.html 20 Jul 2009 22:44:24 -0000 1.10
+++ references.html 30 Jul 2009 07:44:13 -0000 1.11
@@ -103,6 +103,10 @@
>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>
+ <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>
<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>.
Index: attributes.html
===================================================================
RCS file: /sources/public/html5/markup/src/attributes.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- attributes.html 29 Jul 2009 12:16:40 -0000 1.2
+++ attributes.html 30 Jul 2009 07:44:13 -0000 1.3
@@ -1,6 +1,45 @@
<section id="syntax"
xmlns="http://www.w3.org/1999/xhtml">
<h2>Common/shared attribute definitions</h2>
- <div id="shared-hyperlink-attrs">
+ <div id="basic-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>
+ </dl>
+ <dl>
+ <dt id="common.attrs.title">title</dt>
+ <dd>Advisory information associated with the element.</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>
+ <dd>This attribute should only be used with
+ <a href="#syntax-document-xml">documents in the XML syntax</a>.
+ It must not be used in
+ <a href="#syntax-document-html">documents in the HTML syntax</a>.</dd>
+ </dl>
+ <dl>
+ <dt id="common.attrs.xmlspace">xml:space</dt>
+ <dd>As defined in the XML specification
+ <a href="#refsXML">[XML]</a>.</dd>
+ <dd>This attribute should only be used with
+ <a href="#syntax-document-xml">documents in the XML syntax</a>.
+ It must not be used in
+ <a href="#syntax-document-html">documents in the HTML syntax</a>.</dd>
+ </dl>
+ </div>
+ <div>
+ Missing description for: common.attrs.dir
+ Missing description for: common.attrs.xmllang
+ Missing description for: common.attrs.lang
+ Missing description for: common.attrs.style
+ Missing description for: common.attrs.tabindex
+ Missing description for: common.attrs.accesskey
</div>
</section>
Received on Thursday, 30 July 2009 07:44:29 UTC