summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-transitions/transition-and-animation-with-different-durations.html
blob: 9bc692eeaba33eabbd8a6dcfa51ef353caab3fad (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
<!DOCTYPE html>
<html class="reftest-wait">
<title>
Transform animation and opacity transition with different durations
</title>
<style>
div {
  width: 100px; height: 100px;
  background: blue;
}
@keyframes translate {
  from { transform: translateY(0px); }
  to { transform: translateY(0px); }
}
</style>
<div id="target"></div>
<script>
window.addEventListener("load", () => {
  var target = document.getElementById("target");
  target.style = "opacity: 0;";

  getComputedStyle(target).transform;

  target.style = "transition: opacity 0.2s; opacity: 1; " +
                 "animation: translate 0.1s;";

  target.addEventListener("transitionend", () => {
    document.documentElement.classList.remove("reftest-wait");
  });
});
</script>