File: keysplines-x-limits.html

package info (click to toggle)
thunderbird 1%3A140.4.0esr-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,609,432 kB
  • sloc: cpp: 7,672,442; javascript: 5,901,613; ansic: 3,898,954; python: 1,413,343; xml: 653,997; asm: 462,286; java: 180,927; sh: 113,489; makefile: 20,460; perl: 14,288; objc: 13,059; yacc: 4,583; pascal: 3,352; lex: 1,720; ruby: 1,222; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 70; csh: 10
file content (66 lines) | stat: -rw-r--r-- 3,153 bytes parent folder | download | duplicates (22)
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
<!DOCTYPE html>
<title>'keySplines' with x-values outside of the 0 to 1 range</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<svg>
  <rect x="10" width="10" height="10" fill="blue">
    <animate attributeName="x" values="0; 250" dur="5s"/>
  </rect>
  <rect x="10" width="10" height="10" y="20" fill="blue">
    <animate attributeName="x" values="0; 250" dur="5s"
             keyTimes="0; 1" keySplines="-1 0 1 1" calcMode="spline"/>
  </rect>
  <rect x="10" width="10" height="10" y="30" fill="blue">
    <animate attributeName="x" values="0; 250" dur="5s"
             keyTimes="0; 1" keySplines="2 0 1 1" calcMode="spline"/>
  </rect>
  <rect x="10" width="10" height="10" y="10" fill="blue">
    <animate attributeName="x" values="0; 250" dur="5s"
             keyTimes="0; 1" keySplines="0 0 -1 1" calcMode="spline"/>
  </rect>
  <rect x="10" width="10" height="10" y="40" fill="blue">
    <animate attributeName="x" values="0; 250" dur="5s"
             keyTimes="0; 1" keySplines="0 0 2 1" calcMode="spline"/>
  </rect>
  <rect x="10" width="10" height="10" y="50" fill="blue">
     <animateMotion values="0,50; 250,50" dur="5s" keyPoints="0; 1"
                    keyTimes="0; 1" keySplines="-10 0 1 1"
                    calcMode="spline"/>
  </rect>
  <rect x="10" width="10" height="10" y="60" fill="blue">
     <animateMotion values="0,60; 250,60" dur="5s" keyPoints="0; 1"
                    keyTimes="0; 1" keySplines="10 0 1 1"
                    calcMode="spline"/>
  </rect>
  <rect x="10" width="10" height="10" y="70" fill="blue">
     <animateMotion values="0,70; 250,70" dur="5s" keyPoints="0; 1"
                    keyTimes="0; 1" keySplines="0 0 -10 1"
                    calcMode="spline"/>
  </rect>
  <rect x="10" width="10" height="10" y="80" fill="blue">
     <animateMotion values="0,80; 250,80" dur="5s" keyPoints="0; 1"
                    keyTimes="0; 1" keySplines="0 0 10 1"
                    calcMode="spline"/>
  </rect>
</svg>
<script>
  async_test(t => {
    let svg = document.querySelector('svg');
    svg.pauseAnimations();
    svg.setCurrentTime(2.5);
    window.onload = t.step_func(() => {
      requestAnimationFrame(t.step_func_done(() => {
        let rects = document.getElementsByTagName('rect');
        assert_equals(rects[0].getBBox().x, 125, 'animations applied');
        assert_equals(rects[1].getBBox().x, 10, 'first control point x less than zero');
        assert_equals(rects[2].getBBox().x, 10, 'first control point x greater than one');
        assert_equals(rects[3].getBBox().x, 10, 'second control point x less than zero');
        assert_equals(rects[4].getBBox().x, 10, 'second control point x greater than one');
        assert_equals(rects[5].getBBox().x, 10, 'first control point x less than zero');
        assert_equals(rects[6].getBBox().x, 10, 'first control point x greater than one');
        assert_equals(rects[7].getBBox().x, 10, 'second control point x less than zero');
        assert_equals(rects[8].getBBox().x, 10, 'second control point x greater than one');
      }));
    });
  });
</script>