gtk2/testsuite/reftests/partial-rounded-border.css
Benjamin Otte 70fb29e81a reftests: Add a reftest for rendering failure
c18d2872f2 introduced a misrendering in
the Cairo fallback rendering code while fixing another one.

This test exposes that problem.

Related: !756
2019-04-19 03:39:57 +02:00

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;
}