gtk/testsuite/reftests/gradient-flip.css
Matthias Clasen 30b7545fb5 Add a reftest for flipping transforms
Verify that a scale of -1 does in fact cause a
gradient to go the other direction.
2020-09-28 21:07:51 -04:00

15 lines
228 B
CSS

@import "reset-to-defaults.css";
#reference {
background: linear-gradient(to bottom, red, yellow);
}
window {
background: green;
}
#box1 {
transform: scaleY(-1);
background: linear-gradient(to bottom, yellow, red);
}