- From: Bert Bos via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 05 Mar 2012 22:35:08 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-values
In directory hutz:/tmp/cvs-serv23768
Modified Files:
Overview.src.html
Log Message:
Fixed some mark-up errors and miss-spelled bibliographic references.
There are still broken references to text defining actual, used and
computed values, including from the abstract.
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-values/Overview.src.html,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -d -r1.164 -r1.165
--- Overview.src.html 3 Mar 2012 01:11:43 -0000 1.164
+++ Overview.src.html 5 Mar 2012 22:35:06 -0000 1.165
@@ -32,10 +32,10 @@
<dd><a href="[VERSION]">[VERSION]</a></dd>
<dt>Latest version:</dt>
-<dd><a href="[LATEST]/">[LATEST]/</a></dd>
+<dd><a href="[LATEST]">[LATEST]</a></dd>
<dt>Editor's draft:
-<dd><a href="http://dev.w3.org/csswg/[SHORTNAME]/">http://dev.w3.org/csswg/[SHORTNAME]/</var></a>
+<dd><a href="http://dev.w3.org/csswg/[SHORTNAME]/">http://dev.w3.org/csswg/[SHORTNAME]/</a>
<dt>Previous version:</dt>
<dd><a href="http://www.w3.org/TR/2011/WD-css3-values-20110906/">http://www.w3.org/TR/2011/WD-css3-values-20110906/</a></dd>
@@ -82,6 +82,10 @@
<p>The following features are at-risk and may be dropped during the
CR period: ''calc()'', ''cycle()'', ''attr()''.
+<p>This specification is a <strong>Last Call Working Draft.</strong>
+The <strong>deadline for comments</strong> is <strong>29 March
+2012</strong>.
+
<h2 class="no-num no-toc" id="contents">Table of contents</h2>
<!--toc-->
@@ -331,12 +335,12 @@
<div class=example>
<p>Double quotes cannot occur inside double quotes, unless escaped
- (as <code>"\""</code> or as <code>"\22"</code>). Analogously for single quotes (<code>'\''</code> or <code>'\27'</code>).
+ (as <code>"\""</code> or as <code>"\22"</code>). Analogously for single quotes (<code>'\''</code> or <code>'\27'</code>).
<pre>
-<!-- -->content: "this is a 'string'.";
+<!-- -->content: "this is a 'string'.";
<!-- -->content: "this is a \"string\".";
-<!-- -->content: 'this is a "string".';
-<!-- -->content: 'this is a \'string\'.';</pre>
+<!-- -->content: 'this is a "string".';
+<!-- -->content: 'this is a \'string\'.';</pre>
</div>
<p>It is possible to break strings over several lines, for aesthetic or
@@ -383,7 +387,7 @@
rather than by <code><URL></code>. An example of this is the
<a href="http://www.w3.org/TR/CSS21/cascade.html#at-import">''@import'' rule</a>.
- <p>Parentheses, whitespace characters, single quotes (') and
+ <p>Parentheses, whitespace characters, single quotes (') and
double quotes (") appearing in a URL must be escaped with a backslash
so that the resulting value is a valid <code>URL</code> token,
e.g. ''url(open\(parens)'', ''url(close\)parens)''.
@@ -453,7 +457,7 @@
<p>Properties may restrict the number value to some range.
If the value is outside the allowed range, the declaration is invalid
and must be <a href="http://www.w3.org/TR/CSS21/conform.html#ignore">ignored</a>.
- For unrestricted values, UAs must support at least up to ±2<sup>30</h3>; unsupported values must be clamped to the closest supported value.</p>
+ For unrestricted values, UAs must support at least up to ±2<sup>30</sup>; unsupported values must be clamped to the closest supported value.</p>
<h3 id="percentages">
Percentages: the ''<percentage>'' type</h3>
@@ -477,7 +481,7 @@
<p>Properties may restrict the percentage value to some range.
If the value is outside the allowed range, the declaration is invalid
and must be <a href="http://www.w3.org/TR/CSS21/conform.html#ignore">ignored</a>.
- For unrestricted values, UAs must support at least up to ±2<sup>30</h3>%; unsupported values must be clamped to the closest supported value.</p>
+ For unrestricted values, UAs must support at least up to ±2<sup>30</sup>%; unsupported values must be clamped to the closest supported value.</p>
<h2 id="lengths">
Distance Units: the ''<length>'' type</h2>
@@ -816,7 +820,7 @@
graphical representation by indicating how many of these dots fit in a
CSS 'in', 'cm', or 'px'.
For uses, see e.g. the ''resolution'' media query in [[MEDIAQ]]
- or the 'image-resolution' property defined in [[CSS3IMAGES]].
+ or the 'image-resolution' property defined in [[CSS3-IMAGES]].
<p class="note">Note that due to the 1:96 fixed ratio of CSS ''in'' to
CSS ''px'', ''1dppx'' is equivalent to ''96dpi''. This corresponds to
@@ -1092,7 +1096,7 @@
<p>where <dfn>wqname</dfn> is a
<a href="http://dev.w3.org/csswg/css3-namespace/#css-qnames">CSS qualified name</a>
- [[!CSSNAMESPACE]] that represents an attribute name. The computed
+ [[!CSS3NAMESPACE]] that represents an attribute name. The computed
value of the ''attr()'' expression is the value of the attribute with that
name on the element, according to the rules given below.</p>
Received on Monday, 5 March 2012 22:35:10 UTC