summaryrefslogtreecommitdiff
path: root/testsuite/gsk/compare/z-transform-clipping-bounds-3d.node
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gsk/compare/z-transform-clipping-bounds-3d.node')
-rw-r--r--testsuite/gsk/compare/z-transform-clipping-bounds-3d.node28
1 files changed, 28 insertions, 0 deletions
diff --git a/testsuite/gsk/compare/z-transform-clipping-bounds-3d.node b/testsuite/gsk/compare/z-transform-clipping-bounds-3d.node
new file mode 100644
index 0000000000..ebd4b09bd9
--- /dev/null
+++ b/testsuite/gsk/compare/z-transform-clipping-bounds-3d.node
@@ -0,0 +1,28 @@
+transform {
+ transform: translate3d(0, 0, -10000);
+ child: color {
+ bounds: 0 0 50 50;
+ color: rgb(255,0,0);
+ }
+}
+transform {
+ transform: translate3d(0, 0, -10001);
+ child: color {
+ bounds: 50 0 50 50;
+ color: rgb(255,255,0);
+ }
+}
+transform {
+ transform: translate3d(0, 0, 10000);
+ child: color {
+ bounds: 0 50 50 50;
+ color: rgb(0,255,0);
+ }
+}
+transform {
+ transform: translate3d(0, 0, 10001);
+ child: color {
+ bounds: 50 50 50 50;
+ color: rgb(0,0,255);
+ }
+}