summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-view-transitions/fractional-translation-from-position.html
blob: a09b08cf00c554955ec4c4e041c169fe1575de43 (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
<!DOCTYPE html>
<html class=reftest-wait>
<title>View transitions: fractional translation from position</title>
<link rel="help" href="https://www.w3.org/TR/css-view-transitions-1/">
<link rel="author" href="mailto:khushalsagar@chromium.org">
<link rel="match" href="fractional-translation-from-position-ref.html">
<script src="/common/reftest-wait.js"></script>
<style>
body {
  width: 100vw;
  height: 100vh;
  background: grey;
}

#target {
  width: 100px;
  height: 100px;
  position: fixed;
  top: 100.52px;
  left: 100.37px;

  view-transition-name: target;
  contain: layout;
}

/* Keep the animation running for 30s to screenshot pseudo DOM */
::view-transition-new(root), ::view-transition-old(root) {
  animation-duration: 30s;
}

::view-transition-new(target) {
  opacity: 1;
  animation: unset;
}
::view-transition-old(target) {
  opacity: 0;
  animation: unset;
}
</style>

<div id=target>
  Here is some text which should not be blurry.
</div>

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

function runTest() {
  document.startViewTransition(() => {
    requestAnimationFrame(() => requestAnimationFrame(takeScreenshot));
  });
}

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