csswg/css3-images Overview.html,1.87,1.88 Overview.src.html,1.91,1.92

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 @@
     &lsquo;<code class=css>wavy.png</code>&rsquo; and display it at 150dpi;
     failing that to display &lsquo;<code class=css>wavy.gif</code>&rsquo;;
     and finally, if none of the images can be loaded and displayed, to use
-    the color &lsquo;<code class=css>rgba(255,0,0,0.5)</code>&rsquo; to
+    the color &lsquo;<code class=css>rgba(0,0,255,0.5)</code>&rsquo; 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 &lsquo;<code class=property>background-image</code>&rsquo; 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