summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-animations/animate-opacity.html
blob: ff09fe514b30b1d858f2104df2ce8ed18c22b877 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML>
<html>
<title>Reftest, bug 1156456</title>
<style>

body {
  background: #2a4;
}

@keyframes HoldOpacity {
  from, to {
    opacity: 0.6;
  }
}

div {
  width: 200px; height: 200px;
  background: #c37;
  animation: 10s HoldOpacity infinite;
}

</style>
<div></div>