- From: Yves Lafon via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 03 Jan 2010 16:42:51 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator/autotest/testsuite/properties/css3/css3-background
In directory hutz:/tmp/cvs-serv9064
Added Files:
background-attachment-001.css background-clip-001.css
background-image-001.css background-origin-001.css
background-repeat-001.css
Log Message:
positive tests according to http://www.w3.org/TR/2009/CR-css3-background-20091217/
--- NEW FILE: background-image-001.css ---
div {
background-image: inherit;
}
div {
background-image: none;
}
div {
background-image: url("marble.svg");
}
div {
background-image: none, url("marble.svg");
}
div {
background-image: url("marble.svg"), none;
}
div {
background-image: url("paper.svg"), url("rock.png"), url("cissors.jpg");
}
div {
background-image: none, none, none;
}
--- NEW FILE: background-clip-001.css ---
div {
background-clip: inherit;
}
div {
background-clip: border-box;
}
div {
background-clip: padding-box;
}
div {
background-clip: border-box, padding-box;
}
div {
background-clip: border-box, border-box, padding-box, padding-box;
}
--- NEW FILE: background-repeat-001.css ---
div {
background-repeat: inherit;
}
div {
background-repeat: repeat-x;
}
div {
background-repeat: repeat-y;
}
div {
background-repeat: repeat;
}
div {
background-repeat: no-repeat;
}
div {
background-repeat: space;
}
div {
background-repeat: round;
}
div {
background-repeat: space repeat;
}
div {
background-repeat: round space;
}
div {
background-repeat: no-repeat repeat;
}
div {
background-repeat: space repeat, round, repeat-x, round space;
}
--- NEW FILE: background-attachment-001.css ---
div {
background-attachment: inherit;
}
div {
background-attachment: scroll;
}
div {
background-attachment: fixed;
}
div {
background-attachment: local;
}
div {
background-attachment: local, local;
}
div {
background-attachment: scroll, fixed, local, local, scroll;
}
--- NEW FILE: background-origin-001.css ---
div {
background-origin: inherit;
}
div {
background-origin: padding-box;
}
div {
background-origin: border-box;
}
div {
background-origin: content-box;
}
div {
background-origin: padding-box, border-box, content-box;
}
div {
background-origin: border-box, padding-box, border-box, content-box;
}
Received on Sunday, 3 January 2010 16:42:52 UTC