summaryrefslogtreecommitdiffstats
path: root/dom/smil/test/db_smilCSSFromTo.js
blob: a644c969626f88a5aaf9cf940d057c757dec9414 (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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set ts=2 sw=2 sts=2 et: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* testcase data for simple "from-to" animations of CSS properties */

// NOTE: This js file requires db_smilCSSPropertyList.js

// NOTE: I'm Including 'inherit' and 'currentColor' as interpolatable values.
// According to SVG Mobile 1.2 section 16.2.9, "keywords such as inherit which
// yield a numeric computed value may be included in the values list for an
// interpolated animation".

// Path of test URL (stripping off final slash + filename), for use in
// generating computed value of 'cursor' property
var _testPath = document.URL.substring(0, document.URL.lastIndexOf("/"));

// Lists of testcases for re-use across multiple properties of the same type
var _fromToTestLists = {
  color: [
    new AnimTestcaseFromTo("rgb(100, 100, 100)", "rgb(200, 200, 200)", {
      midComp: "rgb(150, 150, 150)",
    }),
    new AnimTestcaseFromTo("#F02000", "#0080A0", {
      fromComp: "rgb(240, 32, 0)",
      midComp: "rgb(120, 80, 80)",
      toComp: "rgb(0, 128, 160)",
    }),
    new AnimTestcaseFromTo("crimson", "lawngreen", {
      fromComp: "rgb(220, 20, 60)",
      midComp: "rgb(172, 136, 30)",
      toComp: "rgb(124, 252, 0)",
    }),
    new AnimTestcaseFromTo("currentColor", "rgb(100, 100, 100)", {
      fromComp: "rgb(50, 50, 50)",
      midComp: "rgb(75, 75, 75)",
    }),
    new AnimTestcaseFromTo(
      "rgba(10, 20, 30, 0.2)",
      "rgba(50, 50, 50, 1)",
      // (rgb(10, 20, 30) * 0.2 * 0.5 + rgb(50, 50, 50) * 1.0 * 0.5) * (1 / 0.6)
      { midComp: "rgba(43, 45, 47, 0.6)", toComp: "rgb(50, 50, 50)" }
    ),
  ],
  colorFromInheritBlack: [
    new AnimTestcaseFromTo("inherit", "rgb(200, 200, 200)", {
      fromComp: "rgb(0, 0, 0)",
      midComp: "rgb(100, 100, 100)",
    }),
  ],
  colorFromInheritWhite: [
    new AnimTestcaseFromTo("inherit", "rgb(205, 205, 205)", {
      fromComp: "rgb(255, 255, 255)",
      midComp: "rgb(230, 230, 230)",
    }),
  ],
  paintServer: [
    new AnimTestcaseFromTo("none", "none"),
    new AnimTestcaseFromTo("none", "blue", { toComp: "rgb(0, 0, 255)" }),
    new AnimTestcaseFromTo("rgb(50, 50, 50)", "none"),
    new AnimTestcaseFromTo(
      "url(#gradA)",
      "url(#gradB) currentColor",
      {
        fromComp: 'url("' + document.URL + '#gradA") rgb(0, 0, 0)',
        toComp: 'url("' + document.URL + '#gradB") rgb(50, 50, 50)',
      },
      "need support for URI-based paints"
    ),
    new AnimTestcaseFromTo(
      "url(#gradA) orange",
      "url(#gradB)",
      {
        fromComp: 'url("' + document.URL + '#gradA") rgb(255, 165, 0)',
        toComp: 'url("' + document.URL + '#gradB") rgb(0, 0, 0)',
      },
      "need support for URI-based paints"
    ),
    new AnimTestcaseFromTo(
      "url(#no_grad)",
      "url(#gradB)",
      {
        fromComp: 'url("' + document.URL + '#no_grad") ' + "rgb(0, 0, 0)",
        toComp: 'url("' + document.URL + '#gradB") rgb(0, 0, 0)',
      },
      "need support for URI-based paints"
    ),
    new AnimTestcaseFromTo(
      "url(#no_grad) rgb(1,2,3)",
      "url(#gradB) blue",
      {
        fromComp: 'url("' + document.URL + '#no_grad") ' + "rgb(1, 2, 3)",
        toComp: 'url("' + document.URL + '#gradB") rgb(0, 0, 255)',
      },
      "need support for URI-based paints"
    ),
  ],
  lengthNoUnits: [
    new AnimTestcaseFromTo("0", "20", {
      fromComp: "0px",
      midComp: "10px",
      toComp: "20px",
    }),
    new AnimTestcaseFromTo("50", "0", {
      fromComp: "50px",
      midComp: "25px",
      toComp: "0px",
    }),
    new AnimTestcaseFromTo("30", "80", {
      fromComp: "30px",
      midComp: "55px",
      toComp: "80px",
    }),
  ],
  lengthPx: [
    new AnimTestcaseFromTo("0px", "12px", {
      fromComp: "0px",
      midComp: "6px",
      toComp: "12px",
    }),
    new AnimTestcaseFromTo("16px", "0px", {
      fromComp: "16px",
      midComp: "8px",
      toComp: "0px",
    }),
    new AnimTestcaseFromTo("10px", "20px", {
      fromComp: "10px",
      midComp: "15px",
      toComp: "20px",
    }),
    new AnimTestcaseFromTo("41px", "1px", {
      fromComp: "41px",
      midComp: "21px",
      toComp: "1px",
    }),
  ],
  lengthPctSVG: [new AnimTestcaseFromTo("20.5%", "0.5%", { midComp: "10.5%" })],
  lengthPxPctSVG: [
    new AnimTestcaseFromTo(
      "10px",
      "10%",
      { midComp: "15px" },
      "need support for interpolating between " + "px and percent values"
    ),
  ],
  lengthPxNoUnitsSVG: [
    new AnimTestcaseFromTo("10", "20px", {
      fromComp: "10px",
      midComp: "15px",
      toComp: "20px",
    }),
    new AnimTestcaseFromTo("10px", "20", {
      fromComp: "10px",
      midComp: "15px",
      toComp: "20px",
    }),
  ],
  opacity: [
    new AnimTestcaseFromTo("1", "0", { midComp: "0.5" }),
    new AnimTestcaseFromTo("0.2", "0.12", { midComp: "0.16" }),
    new AnimTestcaseFromTo("0.5", "0.7", { midComp: "0.6" }),
    new AnimTestcaseFromTo("0.5", "inherit", { midComp: "0.75", toComp: "1" }),
    // Make sure we don't clamp out-of-range values before interpolation
    new AnimTestcaseFromTo(
      "0.2",
      "1.2",
      { midComp: "0.7", toComp: "1" },
      "opacities with abs val >1 get clamped too early"
    ),
    new AnimTestcaseFromTo("-0.2", "0.6", { fromComp: "0", midComp: "0.2" }),
    new AnimTestcaseFromTo(
      "-1.2",
      "1.6",
      { fromComp: "0", midComp: "0.2", toComp: "1" },
      "opacities with abs val >1 get clamped too early"
    ),
    new AnimTestcaseFromTo(
      "-0.6",
      "1.4",
      { fromComp: "0", midComp: "0.4", toComp: "1" },
      "opacities with abs val >1 get clamped too early"
    ),
  ],
  URIsAndNone: [
    new AnimTestcaseFromTo("url(#idA)", "url(#idB)", {
      fromComp: 'url("#idA")',
      toComp: 'url("#idB")',
    }),
    new AnimTestcaseFromTo("none", "url(#idB)", { toComp: 'url("#idB")' }),
    new AnimTestcaseFromTo("url(#idB)", "inherit", {
      fromComp: 'url("#idB")',
      toComp: "none",
    }),
  ],
};

function _tweakForLetterSpacing(testcases) {
  return testcases.map(function (t) {
    let valMap = Object.assign({}, t.computedValMap);
    for (let prop of Object.keys(valMap)) {
      if (valMap[prop] == "0px") {
        valMap[prop] = "normal";
      }
    }
    return new AnimTestcaseFromTo(t.from, t.to, valMap);
  });
}

// List of attribute/testcase-list bundles to be tested
var gFromToBundles = [
  new TestcaseBundle(gPropList.clip, [
    new AnimTestcaseFromTo(
      "rect(1px, 2px, 3px, 4px)",
      "rect(11px, 22px, 33px, 44px)",
      { midComp: "rect(6px, 12px, 18px, 24px)" }
    ),
    new AnimTestcaseFromTo(
      "rect(1px, auto, 3px, 4px)",
      "rect(11px, auto, 33px, 44px)",
      { midComp: "rect(6px, auto, 18px, 24px)" }
    ),
    new AnimTestcaseFromTo("auto", "auto"),
    new AnimTestcaseFromTo(
      "rect(auto, auto, auto, auto)",
      "rect(auto, auto, auto, auto)"
    ),
    // Interpolation not supported in these next cases (with auto --> px-value)
    new AnimTestcaseFromTo(
      "rect(1px, auto, 3px, auto)",
      "rect(11px, auto, 33px, 44px)"
    ),
    new AnimTestcaseFromTo(
      "rect(1px, 2px, 3px, 4px)",
      "rect(11px, auto, 33px, 44px)"
    ),
    new AnimTestcaseFromTo("rect(1px, 2px, 3px, 4px)", "auto"),
    new AnimTestcaseFromTo("auto", "rect(1px, 2px, 3px, 4px)"),
  ]),
  new TestcaseBundle(gPropList.clip_path, _fromToTestLists.URIsAndNone),
  new TestcaseBundle(gPropList.clip_rule, [
    new AnimTestcaseFromTo("nonzero", "evenodd"),
    new AnimTestcaseFromTo("evenodd", "inherit", { toComp: "nonzero" }),
  ]),
  new TestcaseBundle(
    gPropList.color,
    [].concat(_fromToTestLists.color, [
      // Note: inherited value is rgb(50, 50, 50) (set on <svg>)
      new AnimTestcaseFromTo("inherit", "rgb(200, 200, 200)", {
        fromComp: "rgb(50, 50, 50)",
        midComp: "rgb(125, 125, 125)",
      }),
    ])
  ),
  new TestcaseBundle(gPropList.color_interpolation, [
    new AnimTestcaseFromTo("sRGB", "auto", { fromComp: "srgb" }),
    new AnimTestcaseFromTo("inherit", "linearRGB", {
      fromComp: "srgb",
      toComp: "linearrgb",
    }),
  ]),
  new TestcaseBundle(gPropList.color_interpolation_filters, [
    new AnimTestcaseFromTo("sRGB", "auto", { fromComp: "srgb" }),
    new AnimTestcaseFromTo("auto", "inherit", { toComp: "linearrgb" }),
  ]),
  new TestcaseBundle(gPropList.cursor, [
    new AnimTestcaseFromTo("crosshair", "move"),
    new AnimTestcaseFromTo(
      "url('a.cur'), url('b.cur'), nw-resize",
      "sw-resize",
      {
        fromComp:
          'url("' +
          _testPath +
          '/a.cur"), ' +
          'url("' +
          _testPath +
          '/b.cur"), ' +
          "nw-resize",
      }
    ),
  ]),
  new TestcaseBundle(gPropList.direction, [
    new AnimTestcaseFromTo("ltr", "rtl"),
    new AnimTestcaseFromTo("rtl", "inherit"),
  ]),
  new TestcaseBundle(gPropList.display, [
    // I'm not testing the "inherit" value for "display", because part of
    // my test runs with "display: none" on everything, and so the
    // inherited value isn't always the same.  (i.e. the computed value
    // of 'inherit' will be different in different tests)
    new AnimTestcaseFromTo("block", "table-cell"),
    new AnimTestcaseFromTo("inline", "inline-table"),
    new AnimTestcaseFromTo("table-row", "none"),
  ]),
  new TestcaseBundle(gPropList.dominant_baseline, [
    new AnimTestcaseFromTo("alphabetic", "hanging"),
    new AnimTestcaseFromTo("mathematical", "central"),
    new AnimTestcaseFromTo("middle", "text-after-edge"),
    new AnimTestcaseFromTo("text-before-edge", "auto"),
    new AnimTestcaseFromTo("alphabetic", "inherit", { toComp: "auto" }),
  ]),
  // NOTE: Mozilla doesn't currently support "enable-background", but I'm
  // testing it here in case we ever add support for it, because it's
  // explicitly not animatable in the SVG spec.
  new TestcaseBundle(gPropList.enable_background, [
    new AnimTestcaseFromTo("new", "accumulate"),
  ]),
  new TestcaseBundle(
    gPropList.fill,
    [].concat(
      _fromToTestLists.color,
      _fromToTestLists.paintServer,
      _fromToTestLists.colorFromInheritBlack
    )
  ),
  new TestcaseBundle(gPropList.fill_opacity, _fromToTestLists.opacity),
  new TestcaseBundle(gPropList.fill_rule, [
    new AnimTestcaseFromTo("nonzero", "evenodd"),
    new AnimTestcaseFromTo("evenodd", "inherit", { toComp: "nonzero" }),
  ]),
  new TestcaseBundle(gPropList.filter, _fromToTestLists.URIsAndNone),
  new TestcaseBundle(
    gPropList.flood_color,
    [].concat(_fromToTestLists.color, _fromToTestLists.colorFromInheritBlack)
  ),
  new TestcaseBundle(gPropList.flood_opacity, _fromToTestLists.opacity),
  new TestcaseBundle(gPropList.font, [
    // NOTE: 'line-height' is hard-wired at 10px in test_smilCSSFromTo.xhtml
    // because if it's not explicitly set, its value varies across platforms.
    // NOTE: System font values can't be tested here, because their computed
    // values vary from platform to platform.  However, they are tested
    // visually, in the reftest "anim-css-font-1.svg"
    new AnimTestcaseFromTo("10px serif", "30px serif", {
      fromComp: "normal normal 400 10px / 10px serif",
      toComp: "normal normal 400 30px / 10px serif",
    }),
    new AnimTestcaseFromTo("10px serif", "30px sans-serif", {
      fromComp: "normal normal 400 10px / 10px serif",
      toComp: "normal normal 400 30px / 10px sans-serif",
    }),
    new AnimTestcaseFromTo("1px / 90px cursive", "100px monospace", {
      fromComp: "normal normal 400 1px / 10px cursive",
      toComp: "normal normal 400 100px / 10px monospace",
    }),
    new AnimTestcaseFromTo(
      "italic small-caps 200 1px cursive",
      "100px monospace",
      {
        fromComp: "italic small-caps 200 1px / 10px cursive",
        toComp: "normal normal 400 100px / 10px monospace",
      }
    ),
    new AnimTestcaseFromTo(
      "oblique normal 200 30px / 10px cursive",
      "normal small-caps 800 40px / 10px serif"
    ),
  ]),
  new TestcaseBundle(gPropList.font_family, [
    new AnimTestcaseFromTo("serif", "sans-serif"),
    new AnimTestcaseFromTo("cursive", "monospace"),
  ]),
  new TestcaseBundle(
    gPropList.font_size,
    [].concat(_fromToTestLists.lengthNoUnits, _fromToTestLists.lengthPx, [
      new AnimTestcaseFromTo("10px", "40%", {
        midComp: "15px",
        toComp: "20px",
      }),
      new AnimTestcaseFromTo("160%", "80%", {
        fromComp: "80px",
        midComp: "60px",
        toComp: "40px",
      }),
    ])
  ),
  new TestcaseBundle(gPropList.font_size_adjust, [
    new AnimTestcaseFromTo("0.9", "0.1", { midComp: "0.5" }),
    new AnimTestcaseFromTo("0.5", "0.6", { midComp: "0.55" }),
    new AnimTestcaseFromTo("none", "0.4"),
  ]),
  new TestcaseBundle(gPropList.font_stretch, [
    new AnimTestcaseFromTo(
      "normal",
      "wider",
      {},
      "need support for animating between " + "relative 'font-stretch' values"
    ),
    new AnimTestcaseFromTo(
      "narrower",
      "ultra-condensed",
      {},
      "need support for animating between " + "relative 'font-stretch' values"
    ),
    new AnimTestcaseFromTo("ultra-condensed", "condensed", {
      fromComp: "50%",
      midComp: "62.5%",
      toComp: "75%",
    }),
    new AnimTestcaseFromTo("semi-condensed", "semi-expanded", {
      fromComp: "87.5%",
      midComp: "100%",
      toComp: "112.5%",
    }),
    new AnimTestcaseFromTo("expanded", "ultra-expanded", {
      fromComp: "125%",
      midComp: "162.5%",
      toComp: "200%",
    }),
    new AnimTestcaseFromTo("ultra-expanded", "inherit", {
      fromComp: "200%",
      midComp: "150%",
      toComp: "100%",
    }),
  ]),
  new TestcaseBundle(gPropList.font_style, [
    new AnimTestcaseFromTo("italic", "inherit", { toComp: "normal" }),
    new AnimTestcaseFromTo("normal", "italic"),
    new AnimTestcaseFromTo("italic", "oblique"),
    new AnimTestcaseFromTo("oblique", "normal", { midComp: "oblique 7deg" }),
  ]),
  new TestcaseBundle(gPropList.font_variant, [
    new AnimTestcaseFromTo("inherit", "small-caps", { fromComp: "normal" }),
    new AnimTestcaseFromTo("small-caps", "normal"),
  ]),
  new TestcaseBundle(gPropList.font_weight, [
    new AnimTestcaseFromTo("100", "900", { midComp: "500" }),
    new AnimTestcaseFromTo("700", "100", { midComp: "400" }),
    new AnimTestcaseFromTo("inherit", "200", {
      fromComp: "400",
      midComp: "300",
    }),
    new AnimTestcaseFromTo("normal", "bold", {
      fromComp: "400",
      midComp: "550",
      toComp: "700",
    }),
    new AnimTestcaseFromTo(
      "lighter",
      "bolder",
      {},
      "need support for animating between " + "relative 'font-weight' values"
    ),
  ]),
  // NOTE: Mozilla doesn't currently support "glyph-orientation-horizontal" or
  // "glyph-orientation-vertical", but I'm testing them here in case we ever
  // add support for them, because they're explicitly not animatable in the SVG
  // spec.
  new TestcaseBundle(gPropList.glyph_orientation_horizontal, [
    new AnimTestcaseFromTo("45deg", "60deg"),
  ]),
  new TestcaseBundle(gPropList.glyph_orientation_vertical, [
    new AnimTestcaseFromTo("45deg", "60deg"),
  ]),
  new TestcaseBundle(gPropList.image_rendering, [
    new AnimTestcaseFromTo("auto", "optimizeQuality", {
      toComp: "optimizequality",
    }),
    new AnimTestcaseFromTo("optimizeQuality", "optimizeSpeed", {
      fromComp: "optimizequality",
      toComp: "optimizespeed",
    }),
  ]),
  new TestcaseBundle(
    gPropList.letter_spacing,
    _tweakForLetterSpacing(
      [].concat(_fromToTestLists.lengthNoUnits, _fromToTestLists.lengthPx)
    )
  ),
  new TestcaseBundle(
    gPropList.lighting_color,
    [].concat(_fromToTestLists.color, _fromToTestLists.colorFromInheritWhite)
  ),
  new TestcaseBundle(gPropList.marker, _fromToTestLists.URIsAndNone),
  new TestcaseBundle(gPropList.marker_end, _fromToTestLists.URIsAndNone),
  new TestcaseBundle(gPropList.marker_mid, _fromToTestLists.URIsAndNone),
  new TestcaseBundle(gPropList.marker_start, _fromToTestLists.URIsAndNone),
  new TestcaseBundle(gPropList.mask, _fromToTestLists.URIsAndNone),
  new TestcaseBundle(gPropList.opacity, _fromToTestLists.opacity),
  new TestcaseBundle(gPropList.overflow, [
    new AnimTestcaseFromTo("auto", "visible"),
    new AnimTestcaseFromTo("inherit", "visible", { fromComp: "hidden" }),
    new AnimTestcaseFromTo("scroll", "auto"),
  ]),
  new TestcaseBundle(gPropList.pointer_events, [
    new AnimTestcaseFromTo("visibleFill", "stroke", {
      fromComp: "visiblefill",
    }),
    new AnimTestcaseFromTo("none", "visibleStroke", {
      toComp: "visiblestroke",
    }),
  ]),
  new TestcaseBundle(gPropList.shape_rendering, [
    new AnimTestcaseFromTo("auto", "optimizeSpeed", {
      toComp: "optimizespeed",
    }),
    new AnimTestcaseFromTo("crispEdges", "geometricPrecision", {
      fromComp: "crispedges",
      toComp: "geometricprecision",
    }),
  ]),
  new TestcaseBundle(
    gPropList.stop_color,
    [].concat(_fromToTestLists.color, _fromToTestLists.colorFromInheritBlack)
  ),
  new TestcaseBundle(gPropList.stop_opacity, _fromToTestLists.opacity),
  new TestcaseBundle(
    gPropList.stroke,
    [].concat(_fromToTestLists.color, _fromToTestLists.paintServer, [
      // Note: inherited value is "none" (the default for "stroke" property)
      new AnimTestcaseFromTo("inherit", "rgb(200, 200, 200)", {
        fromComp: "none",
      }),
    ])
  ),
  new TestcaseBundle(
    gPropList.stroke_dasharray,
    [].concat(_fromToTestLists.lengthPctSVG, [
      new AnimTestcaseFromTo("inherit", "20", { fromComp: "none" }),
      new AnimTestcaseFromTo("1", "none"),
      new AnimTestcaseFromTo("10", "20", { midComp: "15" }),
      new AnimTestcaseFromTo("1", "2, 3", {
        fromComp: "1, 1",
        midComp: "1.5, 2",
      }),
      new AnimTestcaseFromTo("2, 8", "6", { midComp: "4, 7" }),
      new AnimTestcaseFromTo("1, 3", "1, 3, 5, 7, 9", {
        fromComp: "1, 3, 1, 3, 1, 3, 1, 3, 1, 3",
        midComp: "1, 3, 3, 5, 5, 2, 2, 4, 4, 6",
      }),
    ])
  ),
  new TestcaseBundle(
    gPropList.stroke_dashoffset,
    [].concat(
      _fromToTestLists.lengthNoUnits,
      _fromToTestLists.lengthPx,
      _fromToTestLists.lengthPxPctSVG,
      _fromToTestLists.lengthPctSVG,
      _fromToTestLists.lengthPxNoUnitsSVG
    )
  ),
  new TestcaseBundle(gPropList.stroke_linecap, [
    new AnimTestcaseFromTo("butt", "round"),
    new AnimTestcaseFromTo("round", "square"),
  ]),
  new TestcaseBundle(gPropList.stroke_linejoin, [
    new AnimTestcaseFromTo("miter", "round"),
    new AnimTestcaseFromTo("round", "bevel"),
  ]),
  new TestcaseBundle(gPropList.stroke_miterlimit, [
    new AnimTestcaseFromTo("1", "2", { midComp: "1.5" }),
    new AnimTestcaseFromTo("20.1", "10.1", { midComp: "15.1" }),
  ]),
  new TestcaseBundle(gPropList.stroke_opacity, _fromToTestLists.opacity),
  new TestcaseBundle(
    gPropList.stroke_width,
    [].concat(
      _fromToTestLists.lengthNoUnits,
      _fromToTestLists.lengthPx,
      _fromToTestLists.lengthPxPctSVG,
      _fromToTestLists.lengthPctSVG,
      _fromToTestLists.lengthPxNoUnitsSVG,
      [
        new AnimTestcaseFromTo("inherit", "7px", {
          fromComp: "1px",
          midComp: "4px",
          toComp: "7px",
        }),
      ]
    )
  ),
  new TestcaseBundle(gPropList.text_anchor, [
    new AnimTestcaseFromTo("start", "middle"),
    new AnimTestcaseFromTo("middle", "end"),
  ]),
  new TestcaseBundle(gPropList.text_decoration_line, [
    new AnimTestcaseFromTo("none", "underline"),
    new AnimTestcaseFromTo("overline", "line-through"),
    new AnimTestcaseFromTo("blink", "underline"),
  ]),
  new TestcaseBundle(gPropList.text_rendering, [
    new AnimTestcaseFromTo("auto", "optimizeSpeed", {
      toComp: "optimizespeed",
    }),
    new AnimTestcaseFromTo("optimizeSpeed", "geometricPrecision", {
      fromComp: "optimizespeed",
      toComp: "geometricprecision",
    }),
    new AnimTestcaseFromTo("geometricPrecision", "optimizeLegibility", {
      fromComp: "geometricprecision",
      toComp: "optimizelegibility",
    }),
  ]),
  new TestcaseBundle(gPropList.unicode_bidi, [
    new AnimTestcaseFromTo("embed", "bidi-override"),
  ]),
  new TestcaseBundle(gPropList.vector_effect, [
    new AnimTestcaseFromTo("none", "non-scaling-stroke"),
  ]),
  new TestcaseBundle(gPropList.visibility, [
    new AnimTestcaseFromTo("visible", "hidden"),
    new AnimTestcaseFromTo("hidden", "collapse"),
  ]),
  new TestcaseBundle(
    gPropList.word_spacing,
    [].concat(
      _fromToTestLists.lengthNoUnits,
      _fromToTestLists.lengthPx,
      _fromToTestLists.lengthPxPctSVG
    )
  ),
  new TestcaseBundle(
    gPropList.word_spacing,
    _fromToTestLists.lengthPctSVG,
    "pct->pct animations don't currently work for " + "*-spacing properties"
  ),
  // NOTE: Mozilla doesn't currently support "writing-mode", but I'm
  // testing it here in case we ever add support for it, because it's
  // explicitly not animatable in the SVG spec.
  new TestcaseBundle(gPropList.writing_mode, [
    new AnimTestcaseFromTo("lr", "rl"),
  ]),
];