gtk/testsuite/gsk/compare/repeat-huge-overdraw.node
Benjamin Otte 20c81d90c9 testsuite: Add yet another repeat node test
This one tests that when no offscreen is created for repeating but we
drw everything individually, we still respect the clip set via
child_bounds.
2023-12-26 05:03:24 +01:00

23 lines
410 B
Plaintext

repeat {
bounds: -5 -5 10 10;
child-bounds: 0 0 32768 32768;
child: container {
color {
bounds: -128 -128 256 256;
color: rgb(255,0,0);
}
color {
bounds: -128 32640 256 256;
color: rgb(0,255,0);
}
color {
bounds: 32640 -128 256 256;
color: rgb(255,255,0);
}
color {
bounds: 32640 32640 256 256;
color: rgb(0,0,255);
}
}
}