2002/css-validator/autotest/testsuite/properties/css3/css3-background background-001.css,1.2,1.3

Update of /sources/public/2002/css-validator/autotest/testsuite/properties/css3/css3-background
In directory hutz:/tmp/cvs-serv30452

Modified Files:
	background-001.css 
Log Message:
fixed background property examples for background-size (add bg-position before '/' )


Index: background-001.css
===================================================================
RCS file: /sources/public/2002/css-validator/autotest/testsuite/properties/css3/css3-background/background-001.css,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- background-001.css	9 Jan 2010 10:45:45 -0000	1.2
+++ background-001.css	30 Jan 2011 08:55:20 -0000	1.3
@@ -154,35 +154,35 @@
 /* background-size single values */
 
 div {
-  background: / 0;
+  background: top left / 0;
 }
 div {
-  background: / 12em;
+  background: top left / 12em;
 }
 div {
-  background: / 42px;
+  background: top left / 42px;
 }
 div {
-  background: / 12%;
+  background: top left / 12%;
 }
 div {
-  background: / auto;
+  background: top left / auto;
 }
 div {
-  background: / 12em auto;
+  background: top left / 12em auto;
 }
 div {
-  background: / auto 42%;
+  background: top left / auto 42%;
 }
 div {
-  background: / 12px 42%;
+  background: top left / 12px 42%;
 }
 div {
-  background: / cover;
+  background: top left / cover;
 }
 div {
-  background: / contain;
+  background: top left / contain;
 }
 div {
-  background: / auto, /auto auto, /12px 42%, /cover, /contain, /12em;
+  background: top left / auto, top left /auto auto, top left /12px 42%, top left /cover, top left /contain, top left/12em;
 }

Received on Sunday, 30 January 2011 08:55:23 UTC