| color-000.svg | |
| SVG Image | Inkscape Image |
|
|
Original test: color-000.xht.
CSS Section: http://www.w3.org/TR/CSS21/syndata.html#color-units.
<style type="text/css">
text.correct { fill: red }
text.incorrect { fill: green }
/* Following are invalid: */
text#numnumpercent { fill: rgb(255, 0, 0%); }
text#percentnumnum { fill: rgb(100%, 0, 0); }
text#percentpercentnum { fill: rgb(100%, 0%, 0); }
text#percentnumpercent { fill: rgb(100%, 0, 0%); }
text#numpercentnum { fill: rgb(255, 0%, 0); }
text#floatnumnum { fill: rgb(255.0, 0, 0); }
text#numfloatnum { fill: rgb(0, 128.0, 0); }
/* Following are valid */
text#numnumnum { fill: rgb(0, 128, 0); }
text#percentpercentpercent1 { fill: rgb(0%, 50%, 0%); }
text#percentpercentpercent2 { fill: rgb(0%, 49.99%, 0%); }
</style>