- From: Elika Etemad via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 06 May 2011 18:13:59 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-images
In directory hutz:/tmp/cvs-serv15605
Modified Files:
Overview.html Overview.src.html
Log Message:
red/blue confusion
Index: Overview.html
===================================================================
RCS file: /sources/public/csswg/css3-images/Overview.html,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -d -r1.87 -r1.88
--- Overview.html 6 May 2011 18:12:40 -0000 1.87
+++ Overview.html 6 May 2011 18:13:57 -0000 1.88
@@ -478,13 +478,13 @@
‘<code class=css>wavy.png</code>’ and display it at 150dpi;
failing that to display ‘<code class=css>wavy.gif</code>’;
and finally, if none of the images can be loaded and displayed, to use
- the color ‘<code class=css>rgba(255,0,0,0.5)</code>’ to
+ the color ‘<code class=css>rgba(0,0,255,0.5)</code>’ to
create a dimensionless background image. For example, the browser may not
understand how to render SVG images, the PNG may be malformed, and the
GIF may not exist on the server, so requesting it returns an HTML 404
page instead of an image.</p>
- <pre>background-image: image(url(wavy.svg), 'wavy.png' 150dpi, "wavy.gif", rgba(255,0,0,0.5));</pre>
+ <pre>background-image: image(url(wavy.svg), 'wavy.png' 150dpi, "wavy.gif", rgba(0,0,255,0.5));</pre>
<p>The ‘<code class=property>background-image</code>’ property
specifies that dimensionless images must stretch to cover the entire
Index: Overview.src.html
===================================================================
RCS file: /sources/public/csswg/css3-images/Overview.src.html,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -d -r1.91 -r1.92
--- Overview.src.html 6 May 2011 18:12:40 -0000 1.91
+++ Overview.src.html 6 May 2011 18:13:57 -0000 1.92
@@ -272,13 +272,13 @@
<p>The rule below would tell the UA to load ''wavy.svg'' if
it can; failing that to load ''wavy.png'' and display it at 150dpi;
failing that to display ''wavy.gif''; and finally, if none of the images
- can be loaded and displayed, to use the color ''rgba(255,0,0,0.5)'' to create a
+ can be loaded and displayed, to use the color ''rgba(0,0,255,0.5)'' to create a
dimensionless background image. For example, the browser may not understand
how to render SVG images, the PNG may be malformed, and the GIF may not
exist on the server, so requesting it returns an HTML 404 page instead of
an image.</p>
- <pre>background-image: image(url(wavy.svg), 'wavy.png' 150dpi, "wavy.gif", rgba(255,0,0,0.5));</pre>
+ <pre>background-image: image(url(wavy.svg), 'wavy.png' 150dpi, "wavy.gif", rgba(0,0,255,0.5));</pre>
<p>The 'background-image' property specifies that dimensionless images
must stretch to cover the entire background positioning area
Received on Friday, 6 May 2011 18:14:01 UTC