summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/mozilla/test_get_animations_on_scroll_animations.html
blob: 7d20e5b70b335c1115c53e2949c504aefb603a57 (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
<!doctype html>
<head>
<meta charset=utf-8>
<title>Test getAnimations() which doesn't return scroll animations</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../testcommon.js"></script>
<style>
  @keyframes animWidth {
    from { width: 100px; }
    to { width: 200px }
  }
  @keyframes animTop {
    to { top: 100px }
  }
  .fill-vh {
    width: 100px;
    height: 100vh;
  }
</style>
</head>
<body>
<div id="log"></div>
<script>
"use strict";

test(function(t) {
  const div = addDiv(t,
    { style: "width: 10px; height: 100px; " +
             "animation: animWidth 100s scroll(), animTop 200s;" });

  // Sanity check to make sure the scroll animation is there.
  addDiv(t, { class: "fill-vh" });
  const scroller = document.scrollingElement;
  const maxScroll = scroller.scrollHeight - scroller.clientHeight;
  scroller.scrollTop = maxScroll;
  assert_equals(getComputedStyle(div).width, "200px",
                "The scroll animation is there");

  const animations = div.getAnimations();
  assert_equals(animations.length, 2,
                'getAnimations() should include scroll animations');
  assert_equals(animations[0].animationName, "animWidth",
                'getAmimations() should return scroll animations');
  // FIXME: Bug 1676794. Support ScrollTimeline interface.
  assert_equals(animations[0].timeline, null,
                'scroll animation should not return scroll timeline');
}, 'Element.getAnimation() should include scroll animations');

test(function(t) {
  const div = addDiv(t,
    { style: "width: 10px; height: 100px; " +
             "animation: animWidth 100s scroll(), animTop 100s;" });

  // Sanity check to make sure the scroll animation is there.
  addDiv(t, { class: "fill-vh" });
  const scroller = document.scrollingElement;
  const maxScroll = scroller.scrollHeight - scroller.clientHeight;
  scroller.scrollTop = maxScroll;
  assert_equals(getComputedStyle(div).width, "200px",
                "The scroll animation is there");

  const animations = document.getAnimations();
  assert_equals(animations.length, 2,
                'getAnimations() should include scroll animations');
  assert_equals(animations[0].animationName, "animWidth",
                'getAmimations() should return scroll animations');
  // FIXME: Bug 1676794. Support ScrollTimeline interface.
  assert_equals(animations[0].timeline, null,
                'scroll animation should not return scroll timeline');
}, 'Document.getAnimation() should include scroll animations');

</script>
</body>