mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-14 20:51:07 +00:00
a28915bffb
Of all the recently added tests, disable the ones that fail on the GL renderer, so that CI passes.
18 lines
391 B
Plaintext
18 lines
391 B
Plaintext
/* a normal clip */
|
|
clip {
|
|
clip: 0 0 50 50;
|
|
/* a 3D transform */
|
|
child: transform {
|
|
transform: rotateX(1);
|
|
/* a node that forces an offscreen */
|
|
child: rounded-clip {
|
|
clip: -30000 -30000 60000 60000 / 5;
|
|
child: color {
|
|
/* way too big, but it's clipped, so no problem */
|
|
bounds: -30000 -30000 60000 60000;
|
|
color: red;
|
|
}
|
|
}
|
|
}
|
|
}
|