File: animation-events.html

package info (click to toggle)
thunderbird 1%3A143.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,703,968 kB
  • sloc: cpp: 7,770,492; javascript: 5,943,842; ansic: 3,918,754; python: 1,418,263; xml: 653,354; asm: 474,045; java: 183,079; sh: 111,238; makefile: 20,410; perl: 14,359; objc: 13,059; yacc: 4,583; pascal: 3,405; lex: 1,720; ruby: 999; exp: 762; sql: 715; awk: 580; php: 436; lisp: 430; sed: 69; csh: 10
file content (83 lines) | stat: -rw-r--r-- 2,606 bytes parent folder | download | duplicates (12)
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
<!DOCTYPE html>
<html id="top">
<meta charset="utf-8">
<title>View timeline delay</title>
<link rel="help" href="https://drafts.csswg.org/scroll-animations-1/#events">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/web-animations/testcommon.js"></script>
<style>
  #container {
    border:  10px solid lightgray;
    overflow: auto;
    height:  200px;
    width: 200px;
  }
  .spacer {
    height: 400px;
  }
  #target {
    background-color:  green;
    height:  100px;
  }
</style>
<body>
  <div id="container">
    <div class="spacer"></div>
    <div id="target"></div>
    <div class="spacer"></div>
  </div>
</body>
<script type="text/javascript">
  const keyframes = {transform: ['translateX(0)', 'translateX(100px)']};
  let target = document.getElementById('target');
  let scroller = document.querySelector('#container');
  let timeline = new ViewTimeline({subject: target});
  promise_test(async t => {
    let animation = target.animate(keyframes, {
      timeline,
      fill: 'both'
    });
    scroller.scrollTo({top: 0});
    await waitForCompositorReady();
    let finishedPromise = animation.finished;
    let finished = false;
    let finishEvents = 0;
    finishedPromise.then(() => {
      finished = true;
    });
    animation.addEventListener('finish', () => { finishEvents++; });

    scroller.scrollTo({top: 100});
    await waitForNextFrame();
    assert_false(finished, "Animation is not finished before starting");
    assert_equals(finishEvents, 0, "No finish event before scrolling");

    scroller.scrollTo({top: 400});
    await waitForNextFrame();
    assert_false(finished, "Animation is not finished while active");
    assert_equals(finishEvents, 0, "No finish event while active");

    scroller.scrollTo({top: 600});
    await waitForNextFrame();
    assert_true(finished, "Animation is finished after passing end");
    assert_equals(finishEvents, 1, "A finish event is generated after end");

    scroller.scrollTo({top: 400});
    await waitForNextFrame();
    assert_not_equals(finishedPromise, animation.finished,
        "A new finish promise is created when back in active range");
    finished = false;
    animation.finished.then(() => {
      finished = true;
    });

    scroller.scrollTo({top: 600});
    await waitForNextFrame();
    assert_true(finished, "Finishes after passing end");
    assert_equals(finishEvents, 2, "Another finish event is generated after end");
    animation.cancel();
  }, 'View timeline generates and resolves finish promises and events' );


</script>