gtk/testsuite/gsk/compare/repeat-empty-child-bounds.node
Benjamin Otte 7f1bd1f047 vulkan: Handle empty child bounds in repeat node
Also add test to the testsuite for it.
2023-06-04 19:42:01 +02:00

25 lines
386 B
Plaintext

repeat {
bounds: 0 0 100 100;
child-bounds: 0 0 0 0;
child: color {
bounds: 0 0 20 20;
color: rgb(255,0,0);
}
}
repeat {
bounds: 0 0 100 100;
child-bounds: 0 0 20 0;
child: color {
bounds: 0 0 20 20;
color: rgb(0,128,0);
}
}
repeat {
bounds: 0 0 100 100;
child-bounds: 0 0 0 20;
child: color {
bounds: 0 0 20 20;
color: rgb(0,0,255);
}
}