summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-view-transitions/element-stops-grouping-after-animation.html
blob: df7965215e708af37930e7cdaeef5c2a8b74c92c (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>
<html class=reftest-wait>
<title>View transitions: view transition element remains grouping during animation</title>
<link rel="help" href="https://www.w3.org/TR/css-view-transitions-1/">
<link rel="author" href="mailto:vmpstr@chromium.org">
<link rel="match" href="element-stops-grouping-after-animation-ref.html">
<script src="/common/reftest-wait.js"></script>

<style>
.parent {
  top: 0;
  width: 100px;
  height: 100px;
  position: absolute;
  background: blue;
  transform-style: preserve-3d;
}
.named {
  view-transition-name: target;
}

.child {
  background: green;
  width: 100px;
  height: 100px;
  top: 0;
  left: 0;
  position: absolute;
  transform: translateZ(-500px);
}

body {
  perspective: 1000px;
  height: 500px;
}

::view-transition-group(root) {
  animation-duration: 50ms;
  opacity: 0;
}
::view-transition-group(target) {
  animation-duration: 0s;
}
::view-transition-new(target) {
  animation: unset;
  opacity: 1;
}
::view-transition-old(target) {
  animation: unset;
  opacity: 0;
}

::view-transition {
  background: pink;
}
</style>

<div id=target class="parent named"><div class=child></div></div>

<script>
failIfNot(document.startViewTransition, "Missing document.startViewTransition");

function runTest() {
  let transition = document.startViewTransition();
  transition.ready.then(() => {
    requestAnimationFrame(() => {
      target.classList.remove("named");
    });
  });
  transition.finished.then(takeScreenshot);
}

onload = () => requestAnimationFrame(() => requestAnimationFrame(runTest));
</script>