summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/web-animations/timing-model/timelines/sibling-iframe-timeline.html
blob: 8a611c8579943a6ec3038bdadde967596afcfd2a (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
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Animate using sibling iframe's timeline</title>
</head>
<body></body>
<script src="/common/get-host-info.sub.js"></script>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script type="text/javascript">
  'use strict';

  function crossSiteUrl(filename) {
    const url =
        get_host_info().HTTP_REMOTE_ORIGIN +
            '/web-animations/timing-model/timelines/resources/' +
            filename;
    return url;
  }

  function loadFrame(name, path, hidden) {
    return new Promise(resolve => {
      const frame = document.createElement('iframe');
      if (hidden)
        frame.style = 'visibility: hidden;';
      frame.name = name;
      document.body.appendChild(frame);
      frame.onload = () => {
        resolve();
      }
      frame.src = crossSiteUrl(path);
    });
  }

 function waitForTestResults() {
    return new Promise(resolve => {
      const listener = (evt) => {
        window.removeEventListener('message', listener);
        resolve(evt.data);
      };
      window.addEventListener('message', listener);
    });
  }

  promise_test(async t => {
    const promise = waitForTestResults().then((data) => {
      assert_equals(data, 'PASS');
    });
    // Animate an element in frame A.
    await loadFrame('a', 'target-frame.html', false);
    // Animation's timeline is in hidden frame B.
    await loadFrame('b', 'timeline-frame.html', true);

   return promise;
  }, 'animation tied to another frame\'s timeline runs properly');
</script>
</html>