- From: Tab Atkins Jr.. via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 13 Dec 2011 00:53:07 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-images
In directory hutz:/tmp/cvs-serv11472
Modified Files:
Overview.html Overview.src.html
Log Message:
Fix missing quotes
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-images/Overview.html,v
retrieving revision 1.253
retrieving revision 1.254
diff -u -d -r1.253 -r1.254
--- Overview.html 13 Dec 2011 00:50:19 -0000 1.253
+++ Overview.html 13 Dec 2011 00:53:05 -0000 1.254
@@ -1819,7 +1819,7 @@
class=css>fill</code>’. Otherwise, the object is scaled as follows:
<dl>
- <dt>fill
+ <dt>‘<code class=css>fill</code>’
<dd>
<p>Set the object's size to the <a
@@ -1832,7 +1832,7 @@
<p>This will make the contents exactly fill the replaced element's
content box.</p>
- <dt>contain
+ <dt>‘<code class=css>contain</code>’
<dd>
<p>Determine the used ‘<code class=property>height</code>’
@@ -1854,7 +1854,7 @@
neither width nor height larger than the replaced element's used width
and height, respectively.</p>
- <dt>cover
+ <dt>‘<code class=css>cover</code>’
<dd>
<p>Determine the used ‘<code class=property>height</code>’
@@ -1876,7 +1876,7 @@
neither width nor height smaller than the replaced element's used width
and height, respectively.</p>
- <dt>none
+ <dt>‘<code class=css>none</code>’
<dd>
<p>Set the content's size to the <a
@@ -1886,7 +1886,7 @@
href="#default-object-size"><i>default object size</i></a> equal to the
replaced element's used width and height.</p>
- <dt>scale-down
+ <dt>‘<code class=css>scale-down</code>’
<dd>
<p>Size the content as if ‘<code class=css>none</code>’ or
@@ -2086,18 +2086,19 @@
meanings:
<dl>
- <dt><resolution>
+ <dt>‘<a href="#ltresolution"><code
+ class=css><resolution></code></a>’
<dd>Specifies the intrinsic resolution explicitly.
- <dt>from-image
+ <dt>‘<code class=css>from-image</code>’
<dd>The image's intrinsic resolution is taken as that specified by the
image format. If the image does not specify its own resolution, the
explicitly specified resolution is used (if given), else it defaults to
‘<code class=css>1ddpx</code>’.
- <dt>snap
+ <dt>‘<code class=css>snap</code>’
<dd>If the "snap" keyword is provided, the computed ‘<a
href="#ltresolution"><code class=css><resolution></code></a>’
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-images/Overview.src.html,v
retrieving revision 1.260
retrieving revision 1.261
diff -u -d -r1.260 -r1.261
--- Overview.src.html 13 Dec 2011 00:50:19 -0000 1.260
+++ Overview.src.html 13 Dec 2011 00:53:05 -0000 1.261
@@ -1185,7 +1185,7 @@
Otherwise, the object is scaled as follows:</p>
<dl>
- <dt>fill</dt>
+ <dt>''fill''</dt>
<dd>
<p>Set the object's size to the <i>concrete object size</i> obtained
by running the <a href="#default-sizing">object sizing algorithm</a> with
@@ -1196,7 +1196,7 @@
content box.</p>
</dd>
- <dt>contain</dt>
+ <dt>''contain''</dt>
<dd>
<p>Determine the used 'height' and 'width' of the element as usual,
except: If both 'height' and 'width' are ''auto'', and the used value of
@@ -1212,7 +1212,7 @@
element's used width and height, respectively.</p>
</dd>
- <dt>cover</dt>
+ <dt>''cover''</dt>
<dd>
<p>Determine the used 'height' and 'width' of the element as usual,
except: If both 'height' and 'width' are ''auto'', and the used value of
@@ -1228,7 +1228,7 @@
element's used width and height, respectively.</p>
</dd>
- <dt>none</dt>
+ <dt>''none''</dt>
<dd>
<p>Set the content's size to the <i>concrete object size</i> obtained
by running the <i title=default-sizing>object sizing algorithm</i> with
@@ -1236,7 +1236,7 @@
the replaced element's used width and height.</p>
</dd>
- <dt>scale-down</dt>
+ <dt>''scale-down''</dt>
<dd>
<p>Size the content as if ''none'' or ''contain'' were specified, whichever
would result in a smaller <i>concrete object size</i>.</p>
@@ -1380,16 +1380,16 @@
Values have the following meanings:</p>
<dl>
- <dt><resolution></dt>
+ <dt>''<resolution>''</dt>
<dd>Specifies the intrinsic resolution explicitly.</dd>
- <dt>from-image</dt>
+ <dt>''from-image''</dt>
<dd>The image's intrinsic resolution is taken as that specified by the
image format. If the image does not specify its own resolution, the
explicitly specified resolution is used (if given), else it defaults to
''1ddpx''.</dd>
- <dt>snap</dt>
+ <dt>''snap''</dt>
<dd>If the "snap" keyword is provided, the computed ''<resolution>''
(if any) is the specified resolution rounded to the nearest value that
would map one image pixel to an integer number of device pixels.
Received on Tuesday, 13 December 2011 00:53:08 UTC