- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 17 Jul 2009 03:57:10 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv17947
Modified Files:
Overview.html
Log Message:
Elaborate on unquoted attribute values in intro. (whatwg r3438)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2562
retrieving revision 1.2563
diff -u -d -r1.2562 -r1.2563
--- Overview.html 17 Jul 2009 01:30:48 -0000 1.2562
+++ Overview.html 17 Jul 2009 03:57:07 -0000 1.2563
@@ -1396,10 +1396,11 @@
nested.<p>Elements can have attributes, which control how the elements
work. In the example above, there is a <a href="#hyperlink">hyperlink</a>,
formed using the <code><a href="#the-a-element">a</a></code> element and its <code title="attr-hyperlink-href"><a href="#attr-hyperlink-href">href</a></code> attribute:<pre><a href="demo.html">simple</a></pre><p><a href="#syntax-attributes" title="syntax-attributes">Attributes</a> are placed
- inside the start tag, and consist of a <a href="#syntax-attribute-name" title="syntax-attribute-name">name</a> and a <a href="#syntax-attribute-value" title="syntax-attribute-value">value</a>, separated by an "<code title="">=</code>" character. The attribute value can be left
- unquoted if it is a keyword. Otherwise, it has to be quoted using
- either single or double quotes. The value, along with the "<code title="">=</code>" character, can be omitted altogether if the value
- is the empty string.<pre><!-- empty attributes -->
+ inside the start tag, and consist of a <a href="#syntax-attribute-name" title="syntax-attribute-name">name</a> and a <a href="#syntax-attribute-value" title="syntax-attribute-value">value</a>, separated by an "<code title="">=</code>" character. The attribute value can be <a href="#unquoted">left unquoted</a> if it doesn't contain any special
+ characters. Otherwise, it has to be quoted using either single or
+ double quotes. The value, along with the "<code title="">=</code>"
+ character, can be omitted altogether if the value is the empty
+ string.<pre><!-- empty attributes -->
<input name=address disabled>
<input name=address disabled="">
@@ -52262,7 +52263,7 @@
</dd>
- <dt>Unquoted attribute value syntax</dt>
+ <dt id="unquoted">Unquoted attribute value syntax</dt>
<dd>
@@ -65397,6 +65398,7 @@
Anthony Ricaud,
Antti Koivisto,
Arphen Lin,
+ Aryeh Gregor,
Asbjørn Ulsberg,
Ashley Sheridan,
Aurelien Levy,
Received on Friday, 17 July 2009 03:57:25 UTC