summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/svg/animations/first-interval-in-the-past-dont-contribute.html
blob: 1e9281ae03bb41ac44822efe7549519b5b9e9f32 (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
<!DOCTYPE html>
<title>Animation element that end before time container begin</title>
<link rel="help" href="https://www.w3.org/TR/2001/REC-smil-animation-20010904/#Timing-BeginEnd-LC-Start">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/rendering-utils.js"></script>
<svg>
  <rect width="100" height="100" fill="green">
    <animate attributeName="fill" values="red;red" begin="-1s" dur="1s" fill="freeze"/>
  </rect>
  <set attributeName="stroke-width" to="10"/>
</svg>
<script>
  promise_test(t => {
    const animationStart = new Promise(resolve => {
      document.querySelector('set').onbegin = resolve;
    });
    return animationStart
      .then(() =>
        waitForAtLeastOneFrame())
      .then(() => {
        const rect = document.querySelector('rect');
        assert_equals(getComputedStyle(rect).fill, 'rgb(0, 128, 0)', 'animation does not apply');
      });
  });
</script>