- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 26 Aug 2010 05:56:35 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv9465
Modified Files:
common-microsyntaxes.html spec.html
Log Message:
Make ' red' parse as 'red' for legacy colours. (whatwg r5359)
[updated by splitter]
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.1185
retrieving revision 1.1186
diff -u -d -r1.1185 -r1.1186
--- spec.html 26 Aug 2010 05:06:33 -0000 1.1185
+++ spec.html 26 Aug 2010 05:56:33 -0000 1.1186
@@ -336,7 +336,7 @@
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>,
<a href="author/">web developer edition</a>.
-This is revision 1.4275.
+This is revision 1.4276.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2010 <a href="http://www.w3.org/"><abbr title="World Wide
Index: common-microsyntaxes.html
===================================================================
RCS file: /sources/public/html5/spec/common-microsyntaxes.html,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- common-microsyntaxes.html 25 Aug 2010 18:06:34 -0000 1.13
+++ common-microsyntaxes.html 26 Aug 2010 05:56:33 -0000 1.14
@@ -1988,17 +1988,24 @@
<li><p>If <var title="">input</var> is the empty string, then
return an error.</p></li>
- <li><p>If <var title="">input</var> is an <a href="infrastructure.html#ascii-case-insensitive">ASCII
+ <li><p>Let <var title="">keyword</var> be a string with the same
+ value as <var title="">input</var>.</p></li>
+
+ <li><p><a href="#strip-leading-and-trailing-whitespace">Strip leading and trailing whitespace</a> from <var title="">keyword</var>.</p></li>
+
+ <li><p>If <var title="">keyword</var> is an <a href="infrastructure.html#ascii-case-insensitive">ASCII
case-insensitive</a> match for the string "<code title="">transparent</code>", then return an error.</p></li>
- <li><p>If <var title="">input</var> is an <a href="infrastructure.html#ascii-case-insensitive">ASCII
- case-insensitive</a> match for one of the keywords listed in the
- <a href="http://www.w3.org/TR/css3-color/#svg-color">SVG color
- keywords</a> <!-- or <a
- href="http://www.w3.org/TR/css3-color/#css2-system">CSS2 System
- Colors</a> --> section<!--s--> of the CSS3 Color specification,
- then return the <a href="#simple-color">simple color</a> corresponding to that
- keyword. <a href="references.html#refsCSSCOLOR">[CSSCOLOR]</a></p>
+ <li>
+
+ <p>If <var title="">keyword</var> is an <a href="infrastructure.html#ascii-case-insensitive">ASCII
+ case-insensitive</a> match for one of the keywords listed in
+ the <a href="http://www.w3.org/TR/css3-color/#svg-color">SVG color
+ keywords</a> <!-- or <a
+ href="http://www.w3.org/TR/css3-color/#css2-system">CSS2 System
+ Colors</a> --> section<!--s--> of the CSS3 Color specification,
+ then return the <a href="#simple-color">simple color</a> corresponding to that
+ keyword. <a href="references.html#refsCSSCOLOR">[CSSCOLOR]</a></p>
<p class="note"><a href="http://www.w3.org/TR/css3-color/#css2-system">CSS2 System
Colors</a> are not recognised.</p>
Received on Thursday, 26 August 2010 05:56:37 UTC