summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/svg/animations/end-attribute-change-end-time.html
blob: 9f05d7d405d364a1eadfa104c1c4bd90a2bf3b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<title>Mutation of the 'end' attribute changes current interval end</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<svg>
  <rect width="100" height="100" fill="green">
    <set attributeName="fill" to="red"/>
  </rect>
</svg>
<script>
  async_test(t => {
    onload = t.step_func(() => {
      t.step_timeout(() => {
        let set = document.querySelector('set');
        set.setAttribute('end', '0s');
        requestAnimationFrame(t.step_func_done(() => {
          assert_equals(getComputedStyle(set.targetElement, null).fill, 'rgb(0, 128, 0)');
        }));
      });
    });
  });
</script>