gtk/testsuite/reftests/gradient-hard-stop.css
Matthias Clasen 21a1413bf3 Add a reftest for gradients with hard stops
This is testing the issue described in #1293.

No fix though, this is still broken in Vulkan.
It works correctly in GL and with cairo.
2020-08-05 08:10:35 -04:00

18 lines
216 B
CSS

@import "reset-to-defaults.css";
window {
background-color: black;
}
#reference {
background: linear-gradient(red 50%, yellow 50%);
}
#red {
background-color: red;
}
#yellow {
background-color: yellow;
}