Add a test for rotated cross-fade nodes

This one checks that we don't apply the modelview
transform twice with cross-fades.
This commit is contained in:
Matthias Clasen
2023-04-30 20:20:12 -04:00
parent 4214067d52
commit f6e47b7eb0
3 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
transform {
transform: rotate(90);
child: cross-fade {
progress: 0;
start: color {
bounds: 25 0 25 50;
color: rgb(255,0,0);
}
end: color {
bounds: 0 0 25 50;
color: rgb(0,0,0);
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 B

View File

@@ -34,6 +34,7 @@ compare_render_tests = [
'color-matrix-identity',
'color-matrix-parsing',
'cross-fade-in-opacity',
'cross-fade-in-rotate',
'css-background',
'empty-blend',
'empty-blur',