summaryrefslogtreecommitdiffstats
path: root/dom/smil/test/test_smilTimingZeroIntervals.xhtml
blob: d54b74600b1be5d8afd9d94cf781b2c8b5868d82 (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Test for SMIL timing with zero-duration intervals</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<p id="display"></p>
<div id="content">
<svg id="svg" xmlns="http://www.w3.org/2000/svg" width="120px" height="120px"
     onload="this.pauseAnimations()">
  <circle cx="-100" cy="20" r="15" fill="blue" id="circle"/>
</svg>
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
<![CDATA[
/** Test for SMIL timing with zero-duration intervals **/

/* Global Variables */
const svgns="http://www.w3.org/2000/svg";
var svg = document.getElementById("svg");
var circle = document.getElementById('circle');

SimpleTest.waitForExplicitFinish();

function createAnim() {
  var anim = document.createElementNS(svgns,'animate');
  anim.setAttribute('attributeName','cx');
  anim.setAttribute('from','0');
  anim.setAttribute('to','100');
  anim.setAttribute('dur','10s');
  anim.setAttribute('begin','indefinite');
  return circle.appendChild(anim);
}

function removeAnim(anim) {
  anim.remove();
}

function main() {
  ok(svg.animationsPaused(), "should be paused by <svg> load handler");
  is(svg.getCurrentTime(), 0, "should be paused at 0 in <svg> load handler");

  var tests =
    [ testZeroDurationIntervalsA,
      testZeroDurationIntervalsB,
      testZeroDurationIntervalsC,
      testZeroDurationIntervalsD,
      testZeroDurationIntervalsE,
      testZeroDurationIntervalsF,
      testZeroDurationIntervalsG,
      testZeroDurationIntervalsH,
      testZeroDurationIntervalsI,
      testZeroDurationIntervalsJ,
      testZeroDurationIntervalsK,
      testZeroDurationIntervalsL,
      testZeroDurationIntervalsM,
      testZeroDurationIntervalsN,
      testZeroDurationIntervalsO
    ];
  for (var i = 0; i < tests.length; i++) {
    var anim = createAnim();
    svg.setCurrentTime(0);
    tests[i](anim);
    removeAnim(anim);
  }
  SimpleTest.finish();
}

function checkSample(time, expectedValue) {
  svg.setCurrentTime(time);
  is(circle.cx.animVal.value, expectedValue);
}

function testZeroDurationIntervalsA(anim) {
  // The zero-duration interval should play, followed by a second interval
  // starting at the same point. There is no end for the interval
  // at 4s so it should not play.
  anim.setAttribute('begin', '1s ;4s');
  anim.setAttribute('end', '1s; 2s');
  anim.setAttribute('dur', '2s ');
  anim.setAttribute('fill', 'freeze');
  checkSample(0,-100);
  checkSample(1,0);
  checkSample(1.1,5);
  checkSample(2,50);
  checkSample(3,50);
  checkSample(4,50);
  checkSample(5,50);
  checkSample(6,50);
}

function testZeroDurationIntervalsB(anim) {
  // This interval should however actually restart as there is a valid end-point
  anim.setAttribute('begin', '1s ;4s');
  anim.setAttribute('end', '1.1s; indefinite');
  anim.setAttribute('dur', '2s ');
  anim.setAttribute('fill', 'freeze');
  checkSample(0,-100);
  checkSample(1,0);
  checkSample(1.1,5);
  checkSample(2,5);
  checkSample(4,0);
  checkSample(5,50);
}

function testZeroDurationIntervalsC(anim) {
  // -0.5s has already been used as the endpoint of one interval so don't use it
  // a second time
  anim.setAttribute('begin', '-2s; -0.5s');
  anim.setAttribute('end', '-0.5s; 1s');
  anim.setAttribute('dur', '2s');
  anim.setAttribute('fill', 'freeze');
  checkSample(0,25);
  checkSample(1.5,75);
}

function testZeroDurationIntervalsD(anim) {
  // Two end points that could make a zero-length interval
  anim.setAttribute('begin', '-2s; -0.5s');
  anim.setAttribute('end', '-0.5s; -0.5s; 1s');
  anim.setAttribute('dur', '2s');
  anim.setAttribute('fill', 'freeze');
  checkSample(0,25);
  checkSample(1.5,75);
}

function testZeroDurationIntervalsE(anim) {
  // Should give us 1s-1s, 1s-5s
  anim.setAttribute('begin', '1s');
  anim.setAttribute('end', '1s; 5s');
  anim.setAttribute('fill', 'freeze');
  is(anim.getStartTime(),1);
  checkSample(0,-100);
  checkSample(1,0);
  checkSample(6,40);
}

function testZeroDurationIntervalsF(anim) {
  // Should give us 1s-1s
  anim.setAttribute('begin', '1s');
  anim.setAttribute('end', '1s');
  anim.setAttribute('fill', 'freeze');
  is(anim.getStartTime(),1);
  checkSample(0,-100);
  checkSample(1,0);
  checkSample(2,0);
  try {
    anim.getStartTime();
    ok(false, "Failed to throw exception when there's no current interval.");
  } catch (e) { }
}

function testZeroDurationIntervalsG(anim) {
  // Test a non-zero interval after a zero interval
  // Should give us 1-2s, 3-3s, 3-4s
  anim.setAttribute('begin', '1s; 3s');
  anim.setAttribute('end', '3s; 5s');
  anim.setAttribute('dur', '1s');
  anim.setAttribute('fill', 'freeze');
  checkSample(0,-100);
  checkSample(1,0);
  checkSample(2,100);
  checkSample(3,0);
  checkSample(5,100);
}

function testZeroDurationIntervalsH(anim) {
  // Test multiple non-adjacent zero-intervals
  // Should give us 1-1s, 1-2s, 3-3s, 3-4s
  anim.setAttribute('begin', '1s; 3s');
  anim.setAttribute('end', '1s; 3s; 5s');
  anim.setAttribute('dur', '1s');
  anim.setAttribute('fill', 'freeze');
  checkSample(0,-100);
  checkSample(1,0);
  checkSample(2,100);
  checkSample(3,0);
  checkSample(5,100);
}

function testZeroDurationIntervalsI(anim) {
  // Test skipping values that are the same
  // Should give us 1-1s, 1-2s
  anim.setAttribute('begin', '1s; 1s');
  anim.setAttribute('end', '1s; 1s; 2s');
  anim.setAttribute('fill', 'freeze');
  is(anim.getStartTime(),1);
  checkSample(0,-100);
  checkSample(1,0);
  checkSample(2,10);
  checkSample(3,10);
}

function testZeroDurationIntervalsJ(anim) {
  // Should give us 0-0.5s, 1-1s, 1-3s
  anim.setAttribute('begin', '0s; 1s; 1s');
  anim.setAttribute('end', '1s; 3s');
  anim.setAttribute('dur', '0.5s');
  anim.setAttribute('fill', 'freeze');
  is(anim.getStartTime(),0);
  checkSample(0,0);
  checkSample(0.6,100);
  checkSample(1,0);
  checkSample(2,100);
}

function testZeroDurationIntervalsK(anim) {
  // Should give us -0.5-1s
  anim.setAttribute('begin', '-0.5s');
  anim.setAttribute('end', '-0.5s; 1s');
  anim.setAttribute('fill', 'freeze');
  is(anim.getStartTime(),-0.5);
  checkSample(0,5);
  checkSample(1,15);
  checkSample(2,15);
}

function testZeroDurationIntervalsL(anim) {
  // Test that multiple end values are ignored
  // Should give us 1-1s, 1-3s
  anim.setAttribute('begin', '1s');
  anim.setAttribute('end', '1s; 1s; 1s; 3s');
  anim.setAttribute('fill', 'freeze');
  is(anim.getStartTime(),1);
  checkSample(0,-100);
  checkSample(1,0);
  checkSample(2,10);
  checkSample(4,20);
}

function testZeroDurationIntervalsM(anim) {
  // Test 0-duration interval at start
  anim.setAttribute('begin', '0s');
  anim.setAttribute('end', '0s');
  anim.setAttribute('fill', 'freeze');
  try {
    anim.getStartTime();
    ok(false, "Failed to throw exception when there's no current interval.");
  } catch (e) { }
  checkSample(0,0);
  checkSample(1,0);
}

function testZeroDurationIntervalsN(anim) {
  // Test 0-active-duration interval at start (different code path to above)
  anim.setAttribute('begin', '0s');
  anim.setAttribute('repeatDur', '0s');
  anim.setAttribute('fill', 'freeze');
  try {
    anim.getStartTime();
    ok(false, "Failed to throw exception when there's no current interval.");
  } catch (e) { }
  checkSample(0,0);
  checkSample(1,0);
}

function testZeroDurationIntervalsO(anim) {
  // Make a zero-duration interval by constraining the active duration
  // We should not loop infinitely but should look for the next begin time after
  // that (in this case that is 2s, which would otherwise have been skipped
  // because restart=whenNotActive)
  // Should give us 1-1s, 2-2s
  anim.setAttribute('begin', '1s; 2s');
  anim.setAttribute('repeatDur', '0s');
  anim.setAttribute('restart', 'whenNotActive');
  anim.setAttribute('fill', 'freeze');
  is(anim.getStartTime(),1);
  checkSample(0,-100);
  checkSample(1,0);
  checkSample(1.5,0);
  checkSample(3,0);
  try {
    anim.getStartTime();
    ok(false, "Failed to throw exception when there's no current interval.");
  } catch (e) { }
}

window.addEventListener("load", main);
]]>
</script>
</pre>
</body>
</html>