summaryrefslogtreecommitdiff
path: root/testsuite/css/parser/animation-iteration-count.ref.css
blob: 474cbc65095bbcded1de785f6b384b7f41472c3e (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
a {
  animation-iteration-count: initial;
}

b {
  animation-iteration-count: inherit;
}

c {
  animation-iteration-count: unset;
}

d {
  animation-iteration-count: 1;
}

e {
  animation-iteration-count: 1, 2, 3;
}

f {
  animation-iteration-count: infinite;
}

g {
  animation-iteration-count: 1, infinite, 2;
}