summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/smil/transform/additive-1.svg
blob: 20f035a3ac0008f4a92d820c7ff0e291c6f44999 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<svg xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink"
     class="reftest-wait"
     onload="setTimeAndSnapshot(1.5, true)">
  <script xlink:href="../smil-util.js" type="text/javascript"/>
  <!-- not additive -->
  <g transform="translate(50 50)">
    <path d="M-2 50h4v -90h4l -6 -10 -6 10h4z" fill="blue"
    transform="rotate(-90)">
      <animateTransform attributeName="transform"
        type="rotate" from="0" to="90" dur="1s" fill="freeze"/>
    </path>
  </g>
  <!-- to-animation: special additive -->
  <g transform="translate(150 50)">
    <path d="M-2 50h4v -90h4l -6 -10 -6 10h4z" fill="blue"
    transform="rotate(-90)">
      <animateTransform attributeName="transform"
        type="rotate" to="90" dur="1s" fill="freeze"/>
    </path>
  </g>
  <!-- by-animation: special additive -->
  <g transform="translate(250 50)">
    <path d="M-2 50h4v -90h4l -6 -10 -6 10h4z" fill="blue"
    transform="rotate(-90)">
      <animateTransform attributeName="transform"
        type="rotate" by="180" dur="1s" fill="freeze"/>
    </path>
  </g>
  <!-- normal additive: same type -->
  <g transform="translate(50 150)">
    <path d="M-2 50h4v -90h4l -6 -10 -6 10h4z" fill="blue"
    transform="rotate(45)">
      <animateTransform attributeName="transform"
        type="rotate" from="0" to="45" dur="1s" fill="freeze"
        additive="sum"/>
    </path>
  </g>
  <!-- normal additive: different type -->
  <g transform="translate(100 150)">
    <path d="M-2 50h4v -90h4l -6 -10 -6 10h4z" fill="blue"
    transform="translate(50)">
      <animateTransform attributeName="transform"
        type="rotate" from="0" to="90" dur="1s" fill="freeze"
        additive="sum"/>
    </path>
  </g>
  <!-- stacked additive: same type -->
  <g transform="translate(250 150)">
    <path d="M-2 50h4v -90h4l -6 -10 -6 10h4z" fill="blue"
    transform="rotate(-90)">
      <animateTransform attributeName="transform"
        type="rotate" from="0" to="90" dur="1s" fill="freeze"
        additive="sum"/>
      <animateTransform attributeName="transform"
        type="rotate" from="0" to="90" dur="1s" fill="freeze"
        additive="sum"/>
    </path>
  </g>
  <!-- stacked additive: different types #1 -->
  <g transform="translate(0 250)">
    <path d="M-2 50h4v -90h4l -6 -10 -6 10h4z" fill="blue"
    transform="translate(50)">
      <animateTransform attributeName="transform"
        type="rotate" from="0" to="45" dur="1s" fill="freeze"
        additive="sum"/>
      <animateTransform attributeName="transform"
        type="rotate" from="0" to="45" dur="1s" fill="freeze"
        additive="sum"/>
    </path>
  </g>
  <!-- stacked additive: different types #2 -->
  <g transform="translate(100 250) skewX(-20)">
    <path d="M-2 50h4v -90h4l -6 -10 -6 10h4z" fill="blue"
    transform="skewX(20) translate(50)">
      <animateTransform attributeName="transform"
        type="rotate" from="0" to="45" dur="1s" fill="freeze"
        additive="sum"/>
      <animateTransform attributeName="transform"
        type="rotate" from="0" to="45" dur="1s" fill="freeze"
        additive="sum"/>
    </path>
  </g>
  <!-- stacked additive: different types #3 -->
  <g transform="translate(200 250) skewX(-20)">
    <path d="M-2 50h4v -90h4l -6 -10 -6 10h4z" fill="blue"
    transform="skewX(20) translate(50)">
      <animateTransform attributeName="transform"
        type="rotate" from="0" to="45" dur="1s" fill="freeze"
        additive="sum"/>
      <animateTransform attributeName="transform"
        type="translate" from="0" to="30" dur="1s" fill="freeze"
        additive="sum"/>
      <animateTransform attributeName="transform"
        type="translate" from="0" to="-30" dur="1s" fill="freeze"
        additive="sum"/>
      <animateTransform attributeName="transform"
        type="rotate" from="0" to="45" dur="1s" fill="freeze"
        additive="sum"/>
    </path>
  </g>
  <!-- base value with rotation around a centre -->
  <g transform="translate(-50 300)">
    <path d="M48 100h4v -90h4l -6 -10 -6 10h4z" fill="blue"
    transform="rotate(90 50 50)">
      <animateTransform attributeName="transform"
        type="translate" from="0 0" to="0 -50" dur="1s" fill="freeze"
        additive="sum"/>
    </path>
  </g>
</svg>