mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-19 08:30:09 +00:00
83c2766e3f
Tests included.
33 lines
501 B
Plaintext
33 lines
501 B
Plaintext
container {
|
|
transform {
|
|
transform: scale(1,1);
|
|
child: color {
|
|
bounds: 50 50 50 50;
|
|
color: lime;
|
|
}
|
|
}
|
|
transform {
|
|
transform: scale(1,-1);
|
|
child: color {
|
|
bounds: 50 -50 50 50;
|
|
color: red;
|
|
}
|
|
}
|
|
}
|
|
container {
|
|
transform {
|
|
transform: scale(-1,-1);
|
|
child: color {
|
|
bounds: -50 -50 50 50;
|
|
color: yellow;
|
|
}
|
|
}
|
|
transform {
|
|
transform: scale(-1,1);
|
|
child: color {
|
|
bounds: -50 50 50 50;
|
|
color: blue;
|
|
}
|
|
}
|
|
}
|