Files
gtk/testsuite/css/parser/colors-red.css
Matthias Clasen 6eb4102bf2 Update css parser tests for colors
Use the color property instead of a made-up rgba-valued property.
2015-12-21 14:10:20 -05:00

60 lines
663 B
CSS

a {
color: red;
}
b {
color: rgba(255,0,0,1.0);
}
c {
color: rgb(255,0,0);
}
d {
color: rgba(100%,0%,0%,1);
}
e {
color: rgb(100%,0,0);
}
f {
color: #f00;
}
g {
color: #ff0000;
}
h {
color: #F00;
}
i {
color: #fF0000;
}
j {
color: rgba( 255 , 0 , 0 , 1 ) ;
}
k {
color: rgb( 255 , 0 , 0 ) ;
}
l {
color:/*x*/rgba(/*x*/255/*x*/,/*x*/0/*x*/,/*x*/0/*x*/,/*x*/1/*x*/)/*x*/;
}
m {
color:/*x*/rgb(/*x*/255/*x*/,/*x*/0/*x*/,/*x*/0/*x*/)/*x*/;
}
n {
color: /*x*/ rgba( /*x*/ 255 /*x*/ , /*x*/ 0 /*x*/ , /*x*/ 0 /*x*/ , /*x*/ 1 /*x*/ ) /*x*/ ;
}
o {
color: /*x*/ rgb( /*x*/ 255 /*x*/ , /*x*/ 0 /*x*/ , /*x*/ 0 /*x*/ ) /*x*/ ;
}