mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
reftests: Fix random failures of reftest
The reftest is testing "transparent" works as expected by drawing a purple background once with purple and once with transparent and expecting the same result. This works fine unless anti-aliasing happens at rounded corners. The overdraw of the 2nd background changes the antialiased pixels. Fix this by explicitly setting the border radius to 0. Also reindent the file to make it more readable.
This commit is contained in:
parent
37fbffaa1c
commit
bb3174c913
@ -1,4 +1,15 @@
|
||||
* { background-image: none; background-color: purple; }
|
||||
GtkButton { background-color: blue; }
|
||||
.transparent { background-color: transparent; }
|
||||
.reference { background-color: purple; }
|
||||
* {
|
||||
background-image: none;
|
||||
border-radius: 0;
|
||||
background-color: purple;
|
||||
}
|
||||
|
||||
GtkButton {
|
||||
background-color: blue;
|
||||
}
|
||||
.transparent {
|
||||
background-color: transparent;
|
||||
}
|
||||
.reference {
|
||||
background-color: purple;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user