summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/doc_keyframeLineNumbers.html
blob: 8fce0458406ee858ec4f5bb065694d8d0bdf2095 (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
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>keyframe line numbers test</title>
  <style type="text/css">
div {
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-name: CC;
}

span {
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-name: DD;
}

@keyframes CC {
  from {
    background: #ffffff;
  }
  to {
    background: #f0c;
  }
}

@keyframes DD {
  from {
    background: seagreen;
  }
  to {
    background: chartreuse;
  }
}
  </style>
</head>
<body>
  <div id="outer">
    <span id="inner">lizards</div>
  </div>
</body>
</html>