summaryrefslogtreecommitdiff
path: root/testsuite/css/parser/animation-timing-function.css
blob: 5022e5d7cfed4da5a41901529b880adce01f9a01 (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
a {
  animation-timing-function: initial;
}

b {
  animation-timing-function: inherit;
}

c {
  animation-timing-function: unset;
}

d {
  animation-timing-function: ease;
}

e {
  animation-timing-function: ease, linear, ease-in, ease-out, ease-in-out, step-start, step-end;
}

f {
  animation-timing-function: cubic-bezier(0,0.25,1,2.7);
}

g {
  animation-timing-function: steps(3);
}

h {
  animation-timing-function: steps(5,start);
}

i {
  animation-timing-function: steps(7,end);
}