summaryrefslogtreecommitdiff
path: root/testsuite/gsk/compare/z-transform-clipping-bounds-3d.node
blob: ebd4b09bd99b58f4ea7a8193ed871a13bc74ff7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
  }
}