- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 17 Feb 2012 22:57:42 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-values In directory hutz:/tmp/cvs-serv32091 Modified Files: Overview.html Overview.src.html Log Message: Specify the <url> *always* computes to an absolute url. Index: Overview.html =================================================================== RCS file: /sources/public/csswg/css3-values/Overview.html,v retrieving revision 1.157 retrieving revision 1.158 diff -u -d -r1.157 -r1.158 --- Overview.html 7 Feb 2012 22:59:50 -0000 1.157 +++ Overview.html 17 Feb 2012 22:57:40 -0000 1.158 @@ -26,14 +26,14 @@ <h1>CSS Values and Units Module Level 3</h1> - <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 7 February + <h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 17 February 2012</h2> <dl> <dt>This version: <dd><a - href="http://www.w3.org/TR/2012/ED-css3-values-20120207/">http://www.w3.org/TR/2012/ED-css3-values-20120207/</a> + href="http://www.w3.org/TR/2012/ED-css3-values-20120217/">http://www.w3.org/TR/2012/ED-css3-values-20120217/</a> <dt>Latest version: @@ -554,7 +554,8 @@ <h3 id=keywords><span class=secno>3.1. </span> Pre-defined Keywords</h3> <p>In the value definition fields, keywords with a pre-defined meaning - appear literally. Keywords are CSS <i>identifiers</i> and are interpreted + appear literally. Keywords are CSS <a + href="#identifier"><i>identifiers</i></a> and are interpreted case-insensitively within the ASCII range (i.e., [a-z] and [A-Z] are equivalent). @@ -703,6 +704,10 @@ for this process. For CSS style sheets, the base URI is that of the style sheet, not that of the source document. + <p>When a <a href="#url-value"><i><url></i></a> appears in the + computed value of a property, it is resolved to an absolute URL, as + described in the preceding paragraph. + <div class=example> <p>For example, suppose the following rule: @@ -1130,8 +1135,8 @@ href="#rad"><code class=css>rad</code></a>’, ‘<a href="#turn"><code class=css>turn</code></a>’ units</h3> - <p>Angle values are <i>dimensions</i> denoted by <dfn - id=angle-value><angle></dfn>. The angle unit identifiers are: + <p>Angle values are <a href="#dimension"><i>dimensions</i></a> denoted by + <dfn id=angle-value><angle></dfn>. The angle unit identifiers are: <dl> <dt><dfn id=deg title=deg>deg</dfn> @@ -1162,8 +1167,8 @@ ‘<a href="#s"><code class=css>s</code></a>’, ‘<a href="#ms"><code class=css>ms</code></a>’ units</h3> - <p>Time values are <i>dimensions</i> denoted by <dfn - id=time-value><time></dfn>. The time unit identifiers are: + <p>Time values are <a href="#dimension"><i>dimensions</i></a> denoted by + <dfn id=time-value><time></dfn>. The time unit identifiers are: <dl> <dt><dfn id=s title=s>s</dfn> @@ -1185,9 +1190,9 @@ href="#hz"><code class=css>Hz</code></a>’, ‘<a href="#khz"><code class=css>kHz</code></a>’ units</h3> - <p>Frequency values are <i>dimensions</i> denoted by <dfn - id=frequency-value><frequency></dfn>. The frequency unit identifiers - are: + <p>Frequency values are <a href="#dimension"><i>dimensions</i></a> denoted + by <dfn id=frequency-value><frequency></dfn>. The frequency unit + identifiers are: <dl> <dt><dfn id=hz title=Hz>Hz</dfn> @@ -1207,9 +1212,9 @@ href="#dpcm"><code class=css>dpcm</code></a>’, and ‘<a href="#dppx"><code class=css>dppx</code></a>’ units</h3> - <p>Resolution units are <i>dimensions</i> denoted by <dfn - id=resolution-value><resolution></dfn>. The frequency unit identifiers - are: + <p>Resolution units are <a href="#dimension"><i>dimensions</i></a> denoted + by <dfn id=resolution-value><resolution></dfn>. The frequency unit + identifiers are: <dl> <dt><dfn id=dpi>dpi</dfn> Index: Overview.src.html =================================================================== RCS file: /sources/public/csswg/css3-values/Overview.src.html,v retrieving revision 1.160 retrieving revision 1.161 diff -u -d -r1.160 -r1.161 --- Overview.src.html 7 Feb 2012 22:59:50 -0000 1.160 +++ Overview.src.html 17 Feb 2012 22:57:40 -0000 1.161 @@ -400,6 +400,10 @@ algorithm for this process. For CSS style sheets, the base URI is that of the style sheet, not that of the source document. + <p>When a <i><url></i> appears in the computed value of a property, + it is resolved to an absolute URL, as described in the preceding + paragraph.</p> + <div class="example"> <p>For example, suppose the following rule: <pre>body { background: url("tile.png") }</pre>
Received on Friday, 17 February 2012 22:57:44 UTC