mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Update css parser tests for colors
Use the color property instead of a made-up rgba-valued property.
This commit is contained in:
parent
a21025e096
commit
6eb4102bf2
@ -1,31 +1,31 @@
|
||||
a {
|
||||
rgba-property: #1;
|
||||
color: #1;
|
||||
}
|
||||
|
||||
b {
|
||||
rgba-property: #12;
|
||||
color: #12;
|
||||
}
|
||||
|
||||
c {
|
||||
rgba-property: #1234;
|
||||
color: #1234;
|
||||
}
|
||||
|
||||
d {
|
||||
rgba-property: #12345;
|
||||
color: #12345;
|
||||
}
|
||||
|
||||
e {
|
||||
rgba-property: #1234567;
|
||||
color: #1234567;
|
||||
}
|
||||
|
||||
f {
|
||||
rgba-property: notacolorname;
|
||||
color: notacolorname;
|
||||
}
|
||||
|
||||
g {
|
||||
rgba-property: rgb(1,2,3,4);
|
||||
color: rgb(1,2,3,4);
|
||||
}
|
||||
|
||||
h {
|
||||
rgba-property: rgba(1,2,3,4,5);
|
||||
color: rgba(1,2,3,4,5);
|
||||
}
|
||||
|
@ -1,59 +1,59 @@
|
||||
a {
|
||||
rgba-property: red;
|
||||
color: red;
|
||||
}
|
||||
|
||||
b {
|
||||
rgba-property: rgba(255,0,0,1.0);
|
||||
color: rgba(255,0,0,1.0);
|
||||
}
|
||||
|
||||
c {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
d {
|
||||
rgba-property: rgba(100%,0%,0%,1);
|
||||
color: rgba(100%,0%,0%,1);
|
||||
}
|
||||
|
||||
e {
|
||||
rgba-property: rgb(100%,0,0);
|
||||
color: rgb(100%,0,0);
|
||||
}
|
||||
|
||||
f {
|
||||
rgba-property: #f00;
|
||||
color: #f00;
|
||||
}
|
||||
|
||||
g {
|
||||
rgba-property: #ff0000;
|
||||
color: #ff0000;
|
||||
}
|
||||
|
||||
h {
|
||||
rgba-property: #F00;
|
||||
color: #F00;
|
||||
}
|
||||
|
||||
i {
|
||||
rgba-property: #fF0000;
|
||||
color: #fF0000;
|
||||
}
|
||||
|
||||
j {
|
||||
rgba-property: rgba( 255 , 0 , 0 , 1 ) ;
|
||||
color: rgba( 255 , 0 , 0 , 1 ) ;
|
||||
}
|
||||
|
||||
k {
|
||||
rgba-property: rgb( 255 , 0 , 0 ) ;
|
||||
color: rgb( 255 , 0 , 0 ) ;
|
||||
}
|
||||
|
||||
l {
|
||||
rgba-property:/*x*/rgba(/*x*/255/*x*/,/*x*/0/*x*/,/*x*/0/*x*/,/*x*/1/*x*/)/*x*/;
|
||||
color:/*x*/rgba(/*x*/255/*x*/,/*x*/0/*x*/,/*x*/0/*x*/,/*x*/1/*x*/)/*x*/;
|
||||
}
|
||||
|
||||
m {
|
||||
rgba-property:/*x*/rgb(/*x*/255/*x*/,/*x*/0/*x*/,/*x*/0/*x*/)/*x*/;
|
||||
color:/*x*/rgb(/*x*/255/*x*/,/*x*/0/*x*/,/*x*/0/*x*/)/*x*/;
|
||||
}
|
||||
|
||||
n {
|
||||
rgba-property: /*x*/ rgba( /*x*/ 255 /*x*/ , /*x*/ 0 /*x*/ , /*x*/ 0 /*x*/ , /*x*/ 1 /*x*/ ) /*x*/ ;
|
||||
color: /*x*/ rgba( /*x*/ 255 /*x*/ , /*x*/ 0 /*x*/ , /*x*/ 0 /*x*/ , /*x*/ 1 /*x*/ ) /*x*/ ;
|
||||
}
|
||||
|
||||
o {
|
||||
rgba-property: /*x*/ rgb( /*x*/ 255 /*x*/ , /*x*/ 0 /*x*/ , /*x*/ 0 /*x*/ ) /*x*/ ;
|
||||
color: /*x*/ rgb( /*x*/ 255 /*x*/ , /*x*/ 0 /*x*/ , /*x*/ 0 /*x*/ ) /*x*/ ;
|
||||
}
|
||||
|
@ -1,59 +1,59 @@
|
||||
a {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
b {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
c {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
d {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
e {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
f {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
g {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
h {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
i {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
j {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
k {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
l {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
m {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
n {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
||||
o {
|
||||
rgba-property: rgb(255,0,0);
|
||||
color: rgb(255,0,0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user