summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-view-transitions/no-raf-while-render-blocked.html
blob: 52058b7a04b8317d4266aaffa766738aa9611f5c (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
<!DOCTYPE html>
<meta name="timeout" content="long">
<html>
<title>View transitions: rAF is not issued while render-blocked</title>
<link rel="help" href="https://github.com/WICG/view-transitions">
<link rel="author" href="mailto:khushalsagar@chromium.org">

<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<style>
div {
  width: 100px;
  height: 100px;
  background: blue;
  contain: paint;
  view-transition-name: target;
}
</style>

<div id=target></div>

<script>
let renderBlocked = true;

promise_test(() => {
  assert_implements(document.startViewTransition, "Missing document.startViewTransition");
  return new Promise(async (resolve, reject) => {
    requestAnimationFrame(() => {
      document.startViewTransition(() => {
        return new Promise(async (inner_resolve) => {
          step_timeout(() => {
            renderBlocked = false;
            inner_resolve();
          }, 1000);
        });
      });

      requestAnimationFrame(() => {
        if (renderBlocked)
          reject();
        else
          resolve();
      });
    });
  });
}, "rAF is blocked until prepare callback");
</script>