testsuite: Fix test that was committed in a broken state

1) Use font-size instead of color
This makes it easier to compare reference and test because the values
don't change.

2) Actually sort the reference properly
This unbreaks the test.
This commit is contained in:
Benjamin Otte 2014-12-01 04:04:08 +01:00
parent de2e3c2c2e
commit 7b6c68adc6
2 changed files with 75 additions and 76 deletions

View File

@ -1,80 +1,80 @@
:not(*) {
color: tomato;
font-size: 1px;
}
:not(GtkButton) {
color: tomato;
font-size: 2px;
}
:not(:hover) {
color: tomato;
font-size: 3px;
}
:not(.yourmom) {
color: tomato;
font-size: 4px;
}
:not(#yourmom) {
color: tomato;
font-size: 5px;
}
:not( *) {
color: tomato;
font-size: 6px;
}
:not( GtkButton) {
color: tomato;
font-size: 7px;
}
:not( :hover) {
color: tomato;
font-size: 8px;
}
:not( .yourmom) {
color: tomato;
font-size: 9px;
}
:not( #yourmom) {
color: tomato;
font-size: 10px;
}
:not(* ) {
color: tomato;
font-size: 11px;
}
:not(GtkButton ) {
color: tomato;
font-size: 12px;
}
:not(:hover ) {
color: tomato;
font-size: 13px;
}
:not(.yourmom ) {
color: tomato;
font-size: 14px;
}
:not(#yourmom ) {
color: tomato;
font-size: 15px;
}
:not( * ) {
color: tomato;
font-size: 16px;
}
:not( GtkButton ) {
color: tomato;
font-size: 17px;
}
:not( :hover ) {
color: tomato;
font-size: 18px;
}
:not( .yourmom ) {
color: tomato;
font-size: 19px;
}
:not( #yourmom ) {
color: tomato;
font-size: 20px;
}

View File

@ -1,80 +1,79 @@
:not(*) {
color: rgb(255,99,71);
}
:not(GtkButton) {
color: rgb(255,99,71);
}
:not(:hover) {
color: rgb(255,99,71);
}
:not(.yourmom) {
color: rgb(255,99,71);
}
:not(#yourmom) {
color: rgb(255,99,71);
font-size: 1px;
}
:not(*) {
color: rgb(255,99,71);
}
:not(GtkButton) {
color: rgb(255,99,71);
}
:not(:hover) {
color: rgb(255,99,71);
}
:not(.yourmom) {
color: rgb(255,99,71);
}
:not(#yourmom) {
color: rgb(255,99,71);
font-size: 6px;
}
:not(*) {
color: rgb(255,99,71);
}
:not(GtkButton) {
color: rgb(255,99,71);
}
:not(:hover) {
color: rgb(255,99,71);
}
:not(.yourmom) {
color: rgb(255,99,71);
}
:not(#yourmom) {
color: rgb(255,99,71);
font-size: 11px;
}
:not(*) {
color: rgb(255,99,71);
font-size: 16px;
}
:not(GtkButton) {
color: rgb(255,99,71);
font-size: 2px;
}
:not(GtkButton) {
font-size: 7px;
}
:not(GtkButton) {
font-size: 12px;
}
:not(GtkButton) {
font-size: 17px;
}
:not(:hover) {
color: rgb(255,99,71);
font-size: 3px;
}
:not(.yourmom) {
color: rgb(255,99,71);
font-size: 4px;
}
:not(:hover) {
font-size: 8px;
}
:not(.yourmom) {
font-size: 9px;
}
:not(:hover) {
font-size: 13px;
}
:not(.yourmom) {
font-size: 14px;
}
:not(:hover) {
font-size: 18px;
}
:not(.yourmom) {
font-size: 19px;
}
:not(#yourmom) {
color: rgb(255,99,71);
font-size: 5px;
}
:not(#yourmom) {
font-size: 10px;
}
:not(#yourmom) {
font-size: 15px;
}
:not(#yourmom) {
font-size: 20px;
}