mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
70fb29e81a
c18d2872f2
introduced a misrendering in
the Cairo fallback rendering code while fixing another one.
This test exposes that problem.
Related: !756
41 lines
608 B
CSS
41 lines
608 B
CSS
* {
|
|
all: unset;
|
|
}
|
|
|
|
.background {
|
|
background-color: red;
|
|
}
|
|
|
|
button {
|
|
padding: 10px;
|
|
}
|
|
|
|
#topleft {
|
|
border-top-left-radius: 20px;
|
|
border-left: 5px solid blue;
|
|
border-top: 5px solid blue;
|
|
}
|
|
|
|
#topright {
|
|
border-top-right-radius: 20px;
|
|
border-right: 5px solid blue;
|
|
border-top: 5px solid blue;
|
|
}
|
|
|
|
#bottomleft {
|
|
border-bottom-left-radius: 20px;
|
|
border-left: 5px solid blue;
|
|
border-bottom: 5px solid blue;
|
|
}
|
|
|
|
#bottomright {
|
|
border-bottom-right-radius: 20px;
|
|
border-right: 5px solid blue;
|
|
border-bottom: 5px solid blue;
|
|
}
|
|
|
|
#reference {
|
|
border: 5px solid blue;
|
|
border-radius: 20px;
|
|
}
|