- From: Bert Bos via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 07 Sep 2011 15:37:03 +0000
- To: public-css-commits@w3.org
Update of /sources/public/csswg/css3-images In directory hutz:/tmp/cvs-serv13081 Added Files: gradient1.svg gradient2.svg gradient3.svg Log Message: Extracted from Overview.src.html --- NEW FILE: gradient1.svg --- <svg xmlns="http://www.w3.org/2000/svg" width='200' height='100'> <desc>Image of a color gradient</desc> <defs> <linearGradient x1='0' y1='1' x2='1' y2='0' gradientUnits='objectBoundingBox' id='corner-gradient'> <stop offset='0%' stop-color='red'/> <stop offset='50%' stop-color='white'/> <stop offset='100%' stop-color='blue'/> </linearGradient> </defs> <rect x='0' y='0' width='100%' height='100%' fill='url(#corner-gradient)' /> </svg> --- NEW FILE: gradient3.svg --- <svg xmlns="http://www.w3.org/2000/svg" width='200' height='100' style="background:white"> <desc>Image of a color gradient</desc> <defs> <linearGradient id='nonpremult-gradient'> <stop offset='0%' stop-color='red'/> <stop offset='50%' stop-color='black' stop-opacity='0'/> <stop offset='100%' stop-color='blue'/> </linearGradient> </defs> <rect width='100%' height='100%' fill='url(#nonpremult-gradient)'/> </svg> --- NEW FILE: gradient2.svg --- <svg xmlns="http://www.w3.org/2000/svg" width='200' height='100' style="background:white"> <desc>[Image of a color gradient]</desc> <defs> <linearGradient id='premult-gradient'> <stop offset='0%' stop-color='red'/> <stop offset='50%' stop-color='red' stop-opacity='0'/> <stop offset='50%' stop-color='blue' stop-opacity='0'/> <stop offset='100%' stop-color='blue'/> </linearGradient> </defs> <rect width='100%' height='100%' fill='url(#premult-gradient)'/>> </svg>
Received on Wednesday, 7 September 2011 15:37:09 UTC